0

试图在 ggplot 中绘制堆积条形图。很难更改图例的位置和默认设置使用的配色方案。

我有一些数据被融合到 5 列中,称为 R1、R2、R3、变量、值

stackedCE <- ggplot() + 
geom_bar(data= all_melted, stat = "identity", color = "black", aes(x= R2, 
y= value, fill=variable, width =0.5)) +
ylab("ratio") + 
scale_y_continuous(limits=c(0,100)) +
scale_color_manual(labels=c("Phase 1", "Phase 2"), 
values = c("grey34",  "grey88")) +
xlab("Time (Days)") + 
theme(legend.title = element_blank(), legend.position ="top") +
theme_bw() +
facet_grid(R1 ~ R3, scales="free")

生成的绘图有效,但默认颜色不会改变,图例标题和标签保持不变。任何快速提示将不胜感激。

4

1 回答 1

0

theme_bw()在您手动更改主题元素后将它们重置为其默认值。翻转订单(将您的自定义放在theme()后面theme_bw()),它应该可以工作。

于 2017-06-29T12:01:48.813 回答