saving a data file in R -
i have loaded .txt file r. want save data can actively use it. command saving file? save file 1 of existing packages (usingr, mass), or separate file?
the command either 1 of these :
save(): saves mentioned objects r objects (extension .rdata). these files binary , can read againload()write(): wrappercat(), used create text files objects, matrices.write.table(),write.csv(): commands write data frames text files specific separator.
check sink(), used redirect other output file (usually used logging purposes).
please read manuals of r :
http://cran.r-project.org/doc/manuals/r-intro.pdf
http://cran.r-project.org/other-docs.html
related questions :
Comments
Post a Comment