Skip to content

yegnau/research-visualizer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

research-visualizer

Simple HTML visualization of the quantitative research results

Motivation

When you run quantitative researches through external agencies, they commonly give you the SAV file (format used by the IBM SPSS software package).

SPSS is very expensive, requires skills, and may be an overkill for most tasks.

The tool uses raw CSV data exported from SAV to create HTML visualizations.

How to use

I don't have SPSS, so I used a free GNU alternative called PSPP.

The usage is as follows:

  1. Load the SAV file in PSPP.
  2. Export the data to CSV through running the following commands (syntaxes):
    • SAVE TRANSLATE /OUTFILE="data_values.csv" /TYPE=CSV /FIELDNAMES.
    • SAVE TRANSLATE /OUTFILE="data_labels.csv" /TYPE=CSV /FIELDNAMES /CELLS=LABELS.
  3. Then run the syntax
    • DISPLAY LABELS.
    and save the output into a text file, e.g. data_variables.txt.
  4. These 3 files contain all the data required to visualize the survey.
  5. See the next steps in research-visualizer.py.

Result

Here's how it looks in real life:

Example

Good enough to insert into presentations, etc.

About

Simple HTML visualization of quantitative research results, based on CSV and variable-labels outputs of SPSS/PSPP.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 92.4%
  • HTML 7.6%