up vote 3 down vote favorite
share [g+] share [fb]

Is there any way to import SPSS dataset into Python, preferably NumPy recarray format? I have looked around but could not find any answer.

Joon

link|improve this question

69% accept rate
feedback

5 Answers

gretl claims to import SPSS and export in a variety of formats, as does the R statistical suite. I've never dealt with SPSS data so cannot speak to their relative merits.

link|improve this answer
feedback

SPSS has an extensive integration with Python, but that is meant to be used with SPSS (now known as IBM SPSS Statistics). There is an SPSS ODBC driver that could be used with Python ODBC support to read a sav file.

link|improve this answer
Or you could just save it in whatever format you like using python from inside SPSS, I assume? Both solutions require that ‘joon’ has access to SPSS though (which is quite expensive AFAIK). – JanC Sep 4 '10 at 18:44
feedback

To be clear, the SPSS ODBC driver does not require an SPSS installation.

link|improve this answer
feedback

Maybe this will be helpful for someone:

http://sourceforge.net/search/?q=python+SPSS

good luck!

Michal

link|improve this answer
feedback

You could have Python make an external call to spssread, a Perl script that outputs the content of SPSS files in the way you want.

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.