When ever I write a table of columns to a csv file the columns are offset by one column and do not match the column headers. How do I align my columns with the column headers? Also, how do I change the name of my column headers. -- View this message in context: http://r.789695.n4.nabble.com/writing-a-table-tp3014821p3014821.html Sent from the R help mailing list archive at Nabble.com.
This probably fixes it, although an example would be nice : write.csv(dfr, row.names=FALSE) you change the names with the ?names function before writing it to a csv file. remko -- View this message in context: http://r.789695.n4.nabble.com/writing-a-table-tp3014821p3014839.html Sent from the R help mailing list archive at Nabble.com.