how to remove index column when export file in R -
i using r programming export .dat file. exported file included index column. there possible way/ code export data in r without index column?
lets using write.table , dataset df following work you
write.table(df,'df.dat',row.names=f)
Comments
Post a Comment