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.
|
show 1 more comment
feedback
|
|
The only Python library for STATA interoperability I could find merely provides read-only access to | ||||
|
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,
The
and read it in Stata without a dictionary file as follows:
I believe a | |||
|
feedback
|
.dtahave 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