saveOnDisk {AFM} | R Documentation |
The function saves the an AFMImage
as a rdata file. It uses the fullfilename param of the AFMImage
and add "AFMImage.rda" extension to save the rdata file on disk.
saveOnDisk(AFMImage, exportDirectory)
AFMImage |
an |
exportDirectory |
an optional argument to change the directory where the rdata file will be stored on disk |
saveOnDisk
save on disk an AFMImage
as rdata file
M.Beauvais
## Not run:
library(AFM)
data(AFMImageOfAluminiumInterface)
# save the rdata file of the AFMImage in the tempdir() directory;
# select another directory to save it permanently on your hard drive
saveOnDisk(AFMImageOfAluminiumInterface, tempdir())
## End(Not run)