Scale_color_manual未按预期工作 [英] Scale_color_manual not working as expected

查看:886
本文介绍了Scale_color_manual未按预期工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用下面这段代码创建一个条形图:

I am using the following piece of code to create a bar graph:

temp1 <- melt(final,id='Time')
p <- ggplot(temp1, aes(x=Time, y=value, fill=variable)) +
  geom_bar(stat="identity", position = "fill") +
  scale_y_continuous(labels = percent_format()) +
  ggtitle('Cost Structure Breakdown') + theme_bw() + ylab('Percent Spread') +
  theme(panel.grid.minor.x = element_blank(),
        panel.grid.minor.y = element_blank(),
        panel.grid.major.x=element_line(color='grey90',linetype='dashed'),
        panel.grid.major.y=element_line(color='grey90',linetype='dashed'),
        plot.title=element_text(size=20),
        axis.text=element_text(size=15),
        legend.text=element_text(size=15),
        legend.key=element_blank(),
        legend.title=element_blank()) +
  scale_color_manual(values=c("#a6cee3","#1f78b4","#b2df8a","#33a02c","#fb9a99","#e31a1c","#fdbf6f","#ff7f00","#cab2d6"))
p

scale_color_manual 似乎对结果图没有任何影响,即使删除 scale_color_manual ,它也保持不变。我的数据框 final 有10个变量,我在时间 melt C>。因此,我已经使用了9种颜色的情节。数据集本身可以在此处找到。

The presence of scale_color_manual doesn't seem to have any affect on the resulting plot, it stays the same even if I remove scale_color_manual. My dataframe final has 10 variables and I am using melt on Time. Therefore, I have used 9 colors for the plot. The dataset itself can be found here.

对此有任何帮助,我们将非常感谢。

Any help on this would be much appreciated.

推荐答案

没有可重复的数据。因此,我在这里创建了一个简单的数据。我还简化了OP的代码。这里需要的是 scale_fill_manual

There is no reproducible data. I, therefore, created a simple data here. I also simplified the code of the OP. What is necessary here is scale_fill_manual.

mydf <- data.frame(time = letters[1:3],
                   variable = LETTERS[1:3],
                   value = runif(3, 10, 15),
                   stringsAsFactors = FALSE)


ggplot(mydf, aes(x=time, y=value, fill=variable)) +
  geom_bar(stat="identity") +
  scale_fill_manual(values=c("#a6cee3","#1f78b4","#b2df8a"))

这篇关于Scale_color_manual未按预期工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆