how to avoid writing index of variable in write.table command, e.g. output---> index,character,state "1" "M" "2" "2" "K" "3" "3" "R" "1" "4" "E" "1" "5" "S" "1" "6" "H" "1" "7" "K" "1" "8" "H" "1" "9" "A" "1" "10" "E" "3" "11" "Q" "1" i tried col.name=FALSE & row.name=FALSE but it can't -- View this message in context: http://r.789695.n4.nabble.com/how-to-avoid-writing-index-in-write-table-command-tp4358557p4358557.html Sent from the R help mailing list archive at Nabble.com.
write.table(..., row.names = FALSE) (not row.name ) ----------------Contact Details:------------------------------------------------------- Contact me: Tal.Galili@gmail.com | 972-52-7275845 Read me: www.talgalili.com (Hebrew) | www.biostatistics.co.il (Hebrew) | www.r-statistics.com (English) ---------------------------------------------------------------------------------------------- On Sun, Feb 5, 2012 at 9:53 AM, sagarnikam123 <sagarnikam123@gmail.com>wrote:> how to avoid writing index of variable in write.table command, > e.g. output---> > > index,character,state > "1" "M" "2" > "2" "K" "3" > "3" "R" "1" > "4" "E" "1" > "5" "S" "1" > "6" "H" "1" > "7" "K" "1" > "8" "H" "1" > "9" "A" "1" > "10" "E" "3" > "11" "Q" "1" > > i tried col.name=FALSE & row.name=FALSE but it can't > > > -- > View this message in context: > http://r.789695.n4.nabble.com/how-to-avoid-writing-index-in-write-table-command-tp4358557p4358557.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >[[alternative HTML version deleted]]
David Winsemius
2012-Feb-05 17:53 UTC
[R] how to avoid writing index in write.table command
On Feb 5, 2012, at 2:53 AM, sagarnikam123 wrote:> how to avoid writing index of variable in write.table command, > e.g. output--->It's time to "get with the program", sagarnikam123. You are asked in the Posting Guide to provide a reproductible example. At the very least you should provide str() on your dataframe.> > index,character,state > "1" "M" "2" > "2" "K" "3" > "3" "R" "1" > "4" "E" "1" > "5" "S" "1" > "6" "H" "1" > "7" "K" "1" > "8" "H" "1" > "9" "A" "1" > "10" "E" "3" > "11" "Q" "1" > > i tried col.name=FALSE & row.name=FALSE but it can'tIf row.names = FALSE didn't do it, then there is a named "index" column and you need to write an object from which you have removed the "index" column temp <- dfrm[,-1] write.table(temp, "filenam.txt", row.names=FALSE)> > > -- > View this> Sent from the R help mailing list archive at Nabble.com.Which is neither an arhcive nor is it the R help Mailing list. -- David Winsemius, MD West Hartford, CT
Possibly Parallel Threads
- how to see inbuilt function(cor.test) & how to get p-value from t-value(test of significance) ?
- how to avoid newlines & tabs in file opening?
- Access only part of last dimension of table/matrix
- conditional rowsums in sapply
- Align columns in data frame write.table