
Untitled
By: a guest on
Apr 2nd, 2012 | syntax:
R | size: 0.31 KB | hits: 33 | expires: Never
read <- read.csv('/Users/francescotangari/Downloads/toProcessSed',header=FALSE,sep=",");
matri <- as.matrix(read)
nrows <- length(matri[1,])
plot(matri[1,], type="o", col=4, ylim=c(0,300),axes=FALSE, ann=FALSE)
j = 4
i = 2
for (i in nrows-1) {
lines(matri[i,], type="o", pch=22, lty=2, col=j)
j = j + 4
}