search for: t377

Displaying 1 result from an estimated 1 matches for "t377".

Did you mean: 377
2012 May 03
1
Simple plot loop
...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, col="blue")) } #####################################