save.Rdata.fnc

Copy, Paste and Adapt

save.Rdata.fnc(dat, name='my.data')

Target

Save a data base from an R session in native R format (Rdata). This format is obviously the fastest reading for future sessions.

Save Rdata

save.Rdata.fnc(OBrienKaiser, name='OKaiser')

We save the database OBrienKaiser in a binary Rdata (R binary).

We can now directly read the external file exported using the function:

OKaiser= read.file.fnc('OKaiser.Rdata')