Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
I'm sure there is a way. If the format of the .DTA file is specified, it can become a simple programming exercise – Eli Bendersky Mar 29 '10 at 6:07
it's binary, I'm not sure how to get it out of there – Brian Mar 29 '10 at 6:12

5 Answers

You could try doing it through R. foreign package could read your dataset

library(foreign)
yourData <- read.dta("yourStataFile.dta")

And then you simply write it to CSV

write.csv(yourData, file = "yourStataFile.csv")
share|improve this answer
3  
worked like a charm! – zpesk Nov 8 '12 at 19:00

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.

share|improve this answer

You can do it in StatTransfer, R or perl (as mentioned by others), but StatTransfer costs $$$ and R/Perl have a learning curve.
There is a free, menu-driven stats program from AM Statistical Software that can open and convert Stata .dta from all versions of Stata, see:

http://am.air.org/


Eric A. Booth eric.a.booth@gmail.com ebooth@ppri.tamu.edu

share|improve this answer
1  
BTW, here is Stata's breakdown of how a .dta file is structured, which could be useful for extracting data elements: stata.com/help.cgi?dta – eric.a.booth Aug 19 '10 at 14:31

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

share|improve this answer

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:

library(foreign)
write.table(read.dta(file.choose()), file=file.choose(), quote = FALSE, sep = ",")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.