Closed tystan closed 9 years ago
For Stata 14, the saveold command defaults to a Stata 13 dta file but the R function foreign::read.dta() only works for Stata<=12. Therefore by using the (Stata 14 only) saveold option: "version(12)" allows foreign::read.dta() compatibility.
saveold
dta
foreign::read.dta()
version(12)
Reference if required: http://www.stata.com/support/faqs/data-management/save-for-previous-version/
Also, thanks for creating such a great package and making it available!
Thanks!
For Stata 14, the
saveold
command defaults to a Stata 13dta
file but the R functionforeign::read.dta()
only works for Stata<=12. Therefore by using the (Stata 14 only)saveold
option: "version(12)
" allowsforeign::read.dta()
compatibility.Reference if required: http://www.stata.com/support/faqs/data-management/save-for-previous-version/
Also, thanks for creating such a great package and making it available!