gpt4 book ai didi

r - ggplot2 中每个主题具有不同颜色的意大利面图

转载 作者:行者123 更新时间:2023-12-04 04:50:41 25 4
gpt4 key购买 nike

这是我到目前为止所做的,结果图如下:

set.seed(17)
require(ggplot2)
x = expand.grid(a=1:5, b=1:5)
x$c = rnorm(25)
png('test.png')
p = ggplot(x, aes(a, c, group=b)) + geom_line()
print(p)
dev.off()
savehistory()

enter image description here

目标是使每条线以不同的颜色显示。

最佳答案

使用 ggplot2评论给你正确的答案:

You should coerce b to a factor and it as a color aes.



使用 lattice无需强制 b 考虑因素:
library(lattice)
xyplot(c~a,data =x,groups=b,type='l')

enter image description here

或使用 latticeExtra获取 ggplot2主题:
library(latticeExtra)
xyplot(c~a,data =x,groups=b,type='l',
par.settings = ggplot2like(),axis=axis.grid)

enter image description here

关于r - ggplot2 中每个主题具有不同颜色的意大利面图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17490515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com