2
我想添加標籤geom_hex,這產生了兩個問題:GGPLOT2:geom_hex標籤
- 如何我得到他們的座標;
- 我該如何提取他們的計數值?
小例子:
pipeline <- read.csv(url('http://dl.dropboxusercontent.com/u/7446674/pipeline.csv'),sep="\t",header=T)
pipeline <- pipeline[pipeline$Units>0,]
ggplot(pipeline,aes(x=Longitude,y=Latitude))+
#stat_density2d(n=25,aes(fill=..level..), geom="polygon") +
geom_hex(bins=12)+
coord_equal(ratio = 1/1)+
theme_bw()+
ggtitle('San Francisco Development Pipeline\nQ2 2013')
(此外,在geom_hex,如果有誰知道,如果暈死一直沒有實現我會有興趣知道,太)
的作品就像一個魅力! – ako
計數很好,除非我可以用stat_binhex來衡量觀察結果,但我認爲這還沒有實現。 – ako