Ruby (Rails):导出 SPSS 的数据库数据
我有一个 Rails 应用程序来进行网络调查。它将多项选择(fixnum)问题的答案存储到 sqlite3 中。是否有任何 ruby gem 可用于将数据导出为 spss 格式?我希望能够导出 16/16 之前或更高版本的 SPSS 版本。
我的 SPSS 导出需要包含两个文件:
- 语法文件 (survey_name_SPSS_syntax_file.sps)
- 数据文件 (survey_name_SPSS_data_file.dat)
如果需要,我可以更改 dbms。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 pspp(适用于 Linux 的 gnu 控制台工具)将 CSV 和带有代码的语法文件转换为 SPSS。 http://benpfaff.org/~blp/pspp.pdf
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
我将基于 Limesurvey spss 导出功能页面推出我自己的解决方案。我会让这里的每个人都知道我是否以及如何实现它。 :)
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. :)