我有一个沉积物核心数据集,我想用ggplot2中的geom_bar()以图形方式描绘并填充变量。填充变量与每个其他填充级别交替,但是对于ggplot2的新版本(2.2.1),我无法维护此填充模式。这是here讨论的,但我找不到可行的解决方案。
library(ggplot2)
site<-c(rep('a',14),rep('z',8))
sedcore<-1
fill<-c("y","n","y","n","y","n","y","n","y","n","y","n","y","n","y","n","y","n","y","n","y","n")
df <- data.frame(cbind(site,sedcore,fill))
ggplot(df, aes(x=site, y=sedcore, fill=fill)) + geom_bar(position="stack",stat="identity",colour="black",size=0.35)
最新版本的ggplot不维护数据帧的顺序
如果我加载ggplot2版本2.1,则保持数据帧的顺序:
library(devtools)
install_version("ggplot2", version = "2.1.0", repos = "http://cran.us.r-project.org")
library(ggplot2)
ggplot(df, aes(x=site, y=sedcore, fill=fill)) + geom_bar(position="stack",stat="identity",colour="black",size=0.35)
请告知如何维护数据框的订单。我尝试重新排序我的数据帧以及不同的位置和堆栈术语,但无法解决这个问题。
提前感谢您的帮助。
答案 0 :(得分:1)