我使用lattice包来绘制线图。
library(lattice)
xyplot(price~month,groups=perc,data=Edf,type='l',
main="Percentile chart of OpRes Charge Rates Forcast",
ylab="OpRes Charge Rate ($/MWh)", xlab="Months",ylim=c(0,40),auto.key=TRUE)
然后我想在现有的情节中添加一些点。
points(rep(1,length(OpResWestJan)),OpResWestJan)
OpResWestJan
是一个向量,但点从未出现在现有图中,也没有警告。