Displaying 1 result from an estimated 1 matches for "t374".
Did you mean:
374
2012 May 03
1
Simple plot loop
...ype="o", pch=22, lty=2, col="green")
lines(MONTH,T250, type="o", pch=22, lty=2, col="green")
##(many other similar lines here, with entered column headers . . . up to 75)
lines(MONTH,T373, type="o", pch=22, lty=2, col="blue")
lines(MONTH,T374, type="o", pch=22, lty=2, col="blue")
lines(MONTH,T377, type="o", pch=22, lty=2, col="blue")
# Tried to add lines another way with for i loop, but this is the part not working
for (i in 2:length(Data2)) {
lines(MONTH, i, type="o", pch=22, lty=2,...