Re: [R] create library for own datasets

2008-02-19 Thread Gabor Grothendieck
You might want to look at the datasets package as an example: https://svn.r-project.org/R/trunk/src/library/datasets/ The other way is to save() them in an .rda file and then just load() the file. On Feb 19, 2008 10:20 AM, Birgit Lemcke <[EMAIL PROTECTED]> wrote: > I am using the recent R versio

[R] create library for own datasets

2008-02-19 Thread Birgit Lemcke
I am using the recent R version on a G4 PowerBook with Mac OS X 10.4.11. I have a bunch of datasets that I would like to put all together in a R library, so that I only have to type: >library("name") and all datasets are loaded. Is this like building a package or is there an easier way