Displaying 2 results from an estimated 2 matches for "t231".
Did you mean:
231
2013 Dec 13
2
how do I separete coloumns by comma?
...1 2 3 1 2 40
1 2 3 1 4 22
I want to separate columns by comma, like this:
1,4,4,1,6,23
1,4,2,2,3,28
1,4,5,1,2,24
1,2,3,1,1,24
1,2,3,1,2,40
1,2,3,1,4,22
I used this code:
mydata=read.table("data.txt",sep=",")
but I see this output:
1\t4\t4\t1\t6\t231\t4\t2\t2\t3\t28
...
please correct my code
Thanks in advance
Elham
[[alternative HTML version deleted]]
2012 May 03
1
Simple plot loop
...y=2, col="red")
title(main="5m and 10 m Colpophylia natans colonies over time", ylab="% live coral / colony",
xlab="Months", col.main="black", font.main=4)
lines(MONTH,T162, type="o", pch=22, lty=2, col="red")
lines(MONTH,T231, type="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(MON...