write.table with proper column number in the header
[This article was first published on One Tip Per Day, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Did you notice that the file generated from write.table() in R has missed a tab (\t) in the top-left corner, when row.names=T (by default)?
I found the solution here:
http://stackoverflow.com/questions/2478352/write-table-in-r-screws-up-header-when-has-rownames
write.table(“filename.xls”, sep=”\t”,
col.names = NA
, row.names = TRUE)
Actually, the R document has stated it clearly:
By default there is no column name for a column of row names. Ifcol.names = NA
androw.names = TRUE
a blank column name is added, which is the convention used for CSV files to be read by spreadsheets.
To leave a comment for the author, please follow the link and comment on their blog: One Tip Per Day.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.