我有以下代码,我想绘制两条线,两条线都在同一数据框中指定。然而,我变成了大的彩色阴影,我无法弄清楚原因。数据和代码对我来说是正确的......
library('ggplot2')
library('reshape2')
df <- read.csv(url("http://smallchess.com/test.csv"), row.names=1)
melted = melt(df, id.vars='time')
p <- ggplot(data=melted, aes(x=time, y=value, group=variable, colour=variable)) + geom_line()
print(p)