0

你能帮我解决这个问题吗?事实上,我想在 R 上的同一张图上绘制多条曲线,x 轴带有时间标记。

我试过这个:

dayTime = strptime(sapply(c(0:110)+480, function(x){paste(floor(x/60),":",x%%60, sep="")}), "%H:%M") 
n = 10  
pdf("myGraph.pdf")
plot(x=dayTime, y=rep(0, length(dayTime)), main="myGraph", xlab="Time", ylab="Level", type="n", ylim=c(0, 0.05), xaxt = "n")
for(i in 1:n) 
{
    lines(myData[, i]), col=i)
}
r = as.POSIXct(round(range(dayTime), "hours"))
axis.POSIXct(1, at=seq(r[1], r[2], by="hour"), format="%H")
legend("topleft", legend=stockspool, col=c(1:n), lwd=rep(1, n), cex=0.8)
dev.off()

但问题是我不能在这种情况下添加一条带有线条的曲线,但如果我只使用绘图绘制一条曲线,它就可以正常工作。

非常感谢。

4

2 回答 2

1

以下解决方案使用ggplot2

首先创建一些示例数据:

df = data.frame(id = rep(letters[1:5], each = 100),
                time = rep(Sys.time() + 1:100, 5),
                value = runif(500) + rep(1:5, each = 100))
> head(df)
  id                time    value
1  a 2013-06-17 14:02:37 1.368671
2  a 2013-06-17 14:02:38 1.302188
3  a 2013-06-17 14:02:39 1.817873
4  a 2013-06-17 14:02:40 1.283439
5  a 2013-06-17 14:02:41 1.022949
6  a 2013-06-17 14:02:42 1.232590

并创建一个情节。

library(ggplot2)
ggplot(df, aes(x = time, y = value, color = id)) + geom_line()

在此处输入图像描述

于 2013-06-17T12:06:04.903 回答
0

使用基本图形的解决方案:

df = data.frame(id = rep(letters[1:5], each = 100),
                time = rep(Sys.time() + 1:100, 5),
                value = runif(500) + rep(1:5, each = 100))

library(reshape2)
df <- dcast(df,time~id)
matplot(df[,1],df[,-1],type="l")

您可以以通常的方式固定轴。

在此处输入图像描述

于 2013-06-19T07:10:11.193 回答