Question

I have a Rails application to do web surveys. It stores answers to multiple-choices (fixnum) questions into sqlite3. Is there any ruby gem that I can use to export my data into spss format ? I'd like to be able to export for SPSS version prior of 16/16 or up.

My SPSS export needs to include two files:

  • a syntax file (survey_name_SPSS_syntax_file.sps)
  • a data file (survey_name_SPSS_data_file.dat)

I can change dbms if needed.

Was it helpful?

Solution 2

I'm going to roll my own solution based on the limesurvey spss export function page. I'll let everyone here know, If and how I achieve It. :)

OTHER TIPS

You can use pspp (gnu console tool for Linux) to convert CSV and a syntax file with the codes to SPSS. http://benpfaff.org/~blp/pspp.pdf

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top