Is there a way to convert a dta file to a CSV? I don't have a version of Stata so I can't do something like save as CSV file.
|
|
You could try doing it through R. foreign package could read your dataset
And then you simply write it to CSV
|
|||||
|
|
I have not tried, but one way is if you know Perl, you can use a module, such as dta2csv to convert the file for you. |
|||
|
|
|
You can do it in StatTransfer, R or perl (as mentioned by others), but StatTransfer costs $$$ and R/Perl have a learning curve. Eric A. Booth eric.a.booth@gmail.com ebooth@ppri.tamu.edu |
|||||
|
|
StatTransfer is a program that moves data easily between STATA, excel (or csv), SAS, etc. It is very user friendly (requires no programming skills). See www.stattransfer.com If you use the program just note that you will have to choose "ASCII/Text - Delimited" to work with .csv files rather than .xls |
||||
|
|
|
The R method will work reliably, and it requires little knowledge of R. Note that the conversion using the foreign package will preserve data, but may introduce differences. For example, when converting a table without a primary key, the primary key and associated columns will be inserted during the conversion. From http://www.r-bloggers.com/using-r-for-stata-to-csv-conversion/ I recommend:
|
|||
|
|