gpt4 book ai didi

r - 使用 ggplot 绘制颜色取决于类别的时间序列

转载 作者:行者123 更新时间:2023-12-02 08:21:17 29 4
gpt4 key购买 nike

考虑这个最小的工作示例:

library(ggplot2) 
x <- c(1,2,3,4,5,6)
y <- c(3,2,5,1,3,1)
data <- data.frame(x,y)
pClass <- c(0,1,1,2,2,0)

plottedGraph <- ggplot(data, aes(x = x, y = y, colour = factor(pClass))) + geom_line()
print(plottedGraph)

我有一个时间序列 y = f(x),其中 x 是一个时间步长。每个时间步应该有一个颜色,这取决于时间步的类别,记录在 pClass 中。

这是它给出的结果:

enter image description here

我不明白为什么 ggplot 会将具有相同颜色的点连接在一起,而不是相互跟随的点(这就是 geom_line应该按照文档做)。

如何让它绘制以下内容:

enter image description here

最佳答案

您应该在 aes() 中使用 group = 1 来告诉 ggplot 不同的颜色实际上属于同一行(即。组)。

ggplot(data, aes(x = x, y = y, colour = factor(pClass), group = 1)) + 
geom_line()

enter image description here

关于r - 使用 ggplot 绘制颜色取决于类别的时间序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36861567/

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