[R] Missing datasets (2.13.1)

2011-08-15 Thread Sierra Bravo
Dear all How does one resolve the variance between the actual availability of data sets in the default implementation with those mentioned in the documentation? I am unable to attach some of the datasets, even though help() is available for the same datasets. For example, ToothGrowth is a dataset

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Uwe Ligges
On 15.08.2011 06:33, Sierra Bravo wrote: Dear all How does one resolve the variance between the actual availability of data sets in the default implementation with those mentioned in the documentation? I am unable to attach some of the datasets, even though help() is available for the same

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Dennis Murphy
data(ToothGrowth) makes it available in your workspace. data(ToothGrowth) ls() [1] ToothGrowth str(ToothGrowth) 'data.frame': 60 obs. of 3 variables: $ len : num 4.2 11.5 7.3 5.8 6.4 10 11.2 11.2 5.2 7 ... $ supp: Factor w/ 2 levels OJ,VC: 2 2 2 2 2 2 2 2 2 2 ... $ dose: num 0.5 0.5

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Sierra Bravo
Thanks Uwe, Dennis. However, I'm unable to make progress...this is what I get: data(ToothGrow) Warning message: In data(ToothGrow) : data set 'ToothGrow' not found ToothGrow Error: object 'ToothGrow' not found TIA s.b. -- View this message in context:

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Jeff Newmiller
That would be because ToothGrow is not ToothGrowth. --- Jeff Newmiller The . . Go Live... DCN:jdnew...@dcn.davis.ca.us Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Uwe Ligges
On 15.08.2011 10:26, Sierra Bravo wrote: Thanks Uwe, Dennis. However, I'm unable to make progress...this is what I get: data(ToothGrow) Warning message: In data(ToothGrow) : data set 'ToothGrow' not found ToothGrow Error: object 'ToothGrow' not found What happens if you type

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Sierra Bravo
Thanks Jeff, Uwe. The last case was indeed because of a typo, where I typed ToothGrow instead of ToothGrowth. Many apologies...! s.b. -- View this message in context: http://r.789695.n4.nabble.com/Missing-datasets-2-13-1-tp3743896p3744249.html Sent from the R help mailing list archive at

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Rolf Turner
On 15/08/11 20:26, Sierra Bravo wrote: Thanks Uwe, Dennis. However, I'm unable to make progress...this is what I get: data(ToothGrow) Warning message: In data(ToothGrow) : data set 'ToothGrow' not found ToothGrow Error: object 'ToothGrow' not found. You need to spell it correctly! It's

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Philippe Grosjean
On 15/08/11 10:44, Uwe Ligges wrote: On 15.08.2011 10:26, Sierra Bravo wrote: Thanks Uwe, Dennis. However, I'm unable to make progress...this is what I get: data(ToothGrow) Warning message: In data(ToothGrow) : data set 'ToothGrow' not found ToothGrow Error: object 'ToothGrow' not