我有一个如下所示的数据集:
年 AL AK AZ AR CA CO 1993 135 153 113 157 718 516 1994 218 154 184 185 845 465 1995 482 846 683 682 863 863
我想随着时间的推移绘制折线图,所以 x 轴是年份,y 轴是计数,每条线都是一个状态。如何让年份显示在 x 轴上?
我一直在运行这个:
data <- read.csv("data.csv", header=T)
plot(data$AL, type="l")
par(new=T)
plot(data$AK, type="l")
.....
除了我上面的内容外,x 轴是“索引”,但我希望它是年份。