[R] state.x77 dataset

2011-03-09 Thread rbaer
I tried: data(state.x77) Warning message: In data(state.x77) : data set 'state.x77' not found data(iris) seems to work fine, but the other state datasets (which I haven’t every tried before) don’t seem to be available on my windows 7 running R 2.12.2 installation. ?state brings up the

Re: [R] state.x77 dataset

2011-03-09 Thread Ista Zahn
Hi Rob, I'm not sure exactly what state is, but this works: data(state) head(state.x77) #or whatever Best, Ista On Wed, Mar 9, 2011 at 3:45 PM, rb...@atsu.edu wrote: I tried: data(state.x77) Warning message: In data(state.x77) : data set 'state.x77' not found data(iris)  seems to work

Re: [R] state.x77 dataset

2011-03-09 Thread peter dalgaard
On Mar 9, 2011, at 21:57 , Ista Zahn wrote: Hi Rob, I'm not sure exactly what state is, but this works: data(state) head(state.x77) #or whatever Actually, you don't even need data(state); state.* are available as lazy-loaded objects. However, if you do, you get copies of the objects