难道,你帮我请解决这个问题。 事实上,我想在同一曲线图上绘制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()
但问题是,我不能添加一个曲线,在此背景下行,但如果我绘制只有一个使用的情节曲线,它工作正常。
非常感谢你。
下面的解决方案使用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()
使用碱的图形A液:
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")
您可以在通常的方式固定轴。