views:

96

answers:

1

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.

A: 

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. :)

microspino