Re: [R] Issue attaching a dataset

2013-02-28 Thread Pablo Menese
thanks a lot. works!!! On Tue, Feb 26, 2013 at 7:58 AM, Prof Brian Ripley wrote: > On 26/02/2013 09:55, Milan Bouchet-Valat wrote: > >> Le lundi 25 février 2013 à 20:26 -0300, Pablo Menese a écrit : >> >>> I use to work whit stata dataframe, so, when I use R I type read.dta >>> Until today I do

Re: [R] Issue attaching a dataset

2013-02-26 Thread Prof Brian Ripley
On 26/02/2013 09:55, Milan Bouchet-Valat wrote: Le lundi 25 février 2013 à 20:26 -0300, Pablo Menese a écrit : I use to work whit stata dataframe, so, when I use R I type read.dta Until today I do that without any problem, after type: mydata<-read.dta("C:/dropbox/dataframe.dta") attach(mydata)

Re: [R] Issue attaching a dataset

2013-02-26 Thread Milan Bouchet-Valat
Le lundi 25 février 2013 à 20:26 -0300, Pablo Menese a écrit : > I use to work whit stata dataframe, so, when I use R I type read.dta > Until today I do that without any problem, after type: > > mydata<-read.dta("C:/dropbox/dataframe.dta") > attach(mydata) > > Everything works great... but today,