使用 ggplot() 更改线条颜色
我不太使用 ggplot2,但今天我想在一些图表上尝试一下。但我不知道如何在 geom_line()
中手动控制颜色
我确信我忽略了一些简单的东西,但这是我的测试代码:
x <- c(1:20, 1:20)
variable <- c(rep("y1", 20), rep("y2", 20) )
value <- c(rnorm(20), rnorm(20,.5) )
df <- data.frame(x, variable, value )
d <- ggplot(df, aes(x=x, y=value, group=variable, colour=variable ) ) +
geom_line(size=2)
d
它给了我预期的输出:
我以为我所要做的就是一些简单的事情,例如:
d + scale_fill_manual(values=c("#CC6666", "#9999CC"))
但这不会改变任何事情。我缺少什么?
I don't use ggplot2 that much, but today I thought I'd give it a go on some graphs. But I can't figure out how to manually control colors in geom_line()
I'm sure I'm overlooking something simple, but here's my test code:
x <- c(1:20, 1:20)
variable <- c(rep("y1", 20), rep("y2", 20) )
value <- c(rnorm(20), rnorm(20,.5) )
df <- data.frame(x, variable, value )
d <- ggplot(df, aes(x=x, y=value, group=variable, colour=variable ) ) +
geom_line(size=2)
d
which gives me the expected output:
I thought all I had to do was something simple like:
d + scale_fill_manual(values=c("#CC6666", "#9999CC"))
But that changes nothing. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
color
和fill
是不同的美学。由于您想修改颜色,因此您需要使用相应的比例:就是您想要的。
color
andfill
are separate aesthetics. Since you want to modify the color you need to use the corresponding scale:is what you want.
这是更改线条颜色的另一种方法的最小可重现示例(尝试运行它):
当您添加行 手动。
Here's a minimal reproducible example of another way to change line colours (try running it):
This way can be particularly useful when you added the lines manually.