我想知道,当我使用循环时,如何绘制具有不同颜色的时间序列集。我知道程序ggplot()
可以做到,但我不能在循环之前使用它。这是代码:
plot(units_sold[,1], t="l", ylim=c(0,4500))
for (i in 2:126) {
if (klaster1[i,2] == "1")
lines(units_sold[,i])
}
我应该在代码中放置用于绘制具有不同颜色的群集中的每个时间序列的选项?
答案 0 :(得分:0)
plot(units_sold[,1], t="l", ylim=c(0,4500))
for (i in 2:126)
{
if (klaster1[i,2] == "1")
lines(units_sold[,i], col = colors()[i])
}
您可以使用某些调色板系统改善颜色。