powered by
Rdata
This function saves a data frame in a Rdata format.
save.Rdata(dat, name, path=NULL, part.numb=1000)
Data frame
Name of the R object to be saved
Directory for saving the object
Number of rows of the data frame which should also be saved in csv format. The default is saving 1000 rows.
# NOT RUN { dfr <- matrix( 2*1:12-3, 4,3 ) save.Rdata( dfr, "dataframe_test" ) # }
Run the code above in your browser using DataLab