save.if {Pigengene} | R Documentation |
Saves an R object, and reports the size of the saved object in memory and on file.
save.if(x1, file, verbose = 1)
x1 |
The object to be saved. |
file |
Where to save. If |
verbose |
A numeric determining how much detail will be printed. |
A list including file, and a vector of sizes of the object in memory and on file.
Amir Foroushani, and Habil Zare
m1 <- matrix(0, nrow=1000, ncol=1000) save.if(m1, file="./m1.RData", verbose=3)