I'm wondering if anyone knows a Python package that allows you to save numpy arrays/recarrays in the .dta format of the statistical data analysis software STATA. This would really speed up a few steps in a system I have.

link|improve this question

76% accept rate
What exactly is an .dta file supposed to be? – Sven Marnach Sep 21 '11 at 16:53
A .dta file is a file format associated with data, primarily used for the statistical computing program STATA. I don't know enough about file type to elaborate, but there might be more detail here: filext.com/file-extension/DTA – mike Sep 21 '11 at 17:31
You seem to have the misconception that all files having the extension .dta have a common format. This is not true. The file format you are interested in is specific to STATA and doesn't seem to be used in any other software. Here is the documentation of the format, and I very much doubt there exists a library being able to write this format. – Sven Marnach Sep 21 '11 at 17:44
1  
Probably you can use STATA's infile command to import a CSV file generated with Python. – Sven Marnach Sep 21 '11 at 17:53
I am able to use infile/insheet commands to bring in .csv files to STATA, but .dta files can be appended (ie,stacked) many-fold faster than the process of bringing in .csvs, saving them, bringing in other .csvs (it's a rather inefficient program, but is necessary for my team's research). – mike Sep 21 '11 at 18:38
show 1 more comment
feedback

2 Answers

The only Python library for STATA interoperability I could find merely provides read-only access to .dta files. The R foreign library however provides a function write.dta, and RPy provides a Python interface to R. Maybe the combination of these tools can help you.

link|improve this answer
feedback

The scikits.statsmodels package includes a reader for Stata data files, which relies in part on PyDTA as pointed out by @Sven. In particular, genfromdta() will return an ndarray, e.g. from Python 2.7/statsmodels 0.3.1:

>>> import scikits.statsmodels.api as sm
>>> arr = sm.iolib.genfromdta('/Applications/Stata12/auto.dta')
>>> type(arr)
<type 'numpy.ndarray'>

The savetxt() function can be used in turn to save an array as a text file, which can be imported in Stata. For example, we can export the above as

>>> sm.iolib.savetxt('auto.txt', arr, fmt='%2s', delimiter=",")

and read it in Stata without a dictionary file as follows:

. insheet using auto.txt, clear

I believe a *.dta reader should be added in the near future.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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