hsWriteTable {HadoopStreaming} | R Documentation |
Calls write.table without row names or column names, without string quotes, and with tab as the default separator.
hsWriteTable(d, file = "", sep = "\t")
d |
A data frame |
file |
A connection, as taken by write.table() |
sep |
The column separator, defaults to a tab character. |
No return value.
David S. Rosenberg <drosen@sensenetworks.com>
d=data.frame(a=c('hi','yes','no'),b=c(1,2,3)) rownames(d) <- c('row1','row2','row3') write.table(d) hsWriteTable(d)