R - 更改 ggplot2 图中的颜色

发布于 2024-11-08 00:24:58 字数 380 浏览 2 评论 0原文

可能的重复:
ggplot 自定义调色板

你好,

我正在使用这个问题 - 使用 ggplot2 制作堆积面积图 - 制作漂亮的堆积面积图。

生成的 grapg 很好,但我找不到如何更改 ggplot 图中的颜色。

Possible Duplicate:
ggplot custom colors palette

Hello,

I am using this question - Making a stacked area plot using ggplot2 - to make a nice stacked area plot.

The resulting grapg is nice, but I cannot find how to change the colors in ggplot graph.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

GRAY°灰色天空 2024-11-15 00:24:58

您需要手动指定要使用的颜色,然后使用scale_fill_manual。

rhg_cols1<- c("#000000","#F8766D","#7CAE00","#00BFC4","#C77CFF" )

ggplot()+geom_bar()+opts()+ scale_fill_manual(values = rhg_cols1)

you need to manual designate the colors you want to use, then use scale_fill_manual.

rhg_cols1<- c("#000000","#F8766D","#7CAE00","#00BFC4","#C77CFF" )

ggplot()+geom_bar()+opts()+ scale_fill_manual(values = rhg_cols1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文