Re: [R] Extract Stata estimates to use in R

2009-05-08 Thread Rob Denniker
Might as well answer myself in case anyone has this problem again... To save a variance-covariance matrix from Stata as a CSV file that can be read into R, it's something like: regress mpg weight foreign matrix V=e(V) svmat V,names(vvector) outsheet vvector* using vv1.csv, replace > -Origi

[R] Extract Stata estimates to use in R

2009-05-08 Thread Rob Denniker
Before you flame me, the reason I am using Stata is that I didn't get a response to my query below, so I have my cluster robust covariance matrix in Stata [one line of code], but now I need to take all those parameter estimates and put them back in R so I can simulate properly. Anyone done this