Re: [R] load all data sets in a package

2010-04-18 Thread Uwe Ligges
On 18.04.2010 12:59, carol white wrote: Hi, It might be a simple question but how to load all data sets of a package? It's possible to get the list of data sets in a package with v= data(package = package_name) v[3]$results[,3] but data(get(v[3]$results[,3])) doesn't work. See ?data that t

[R] load all data sets in a package

2010-04-18 Thread carol white
Hi, It might be a simple question but how to load all data sets of a package? It's possible to get the list of data sets in a package with v= data(package = package_name) v[3]$results[,3] but data(get(v[3]$results[,3])) doesn't work. Thanks Carol _