using spss to report nsse data: transform your analyses and save time with spss regional nsse...

14
Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst Center for Postsecondary Research, Indiana University Bloomington

Post on 15-Jan-2016

216 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS

Regional NSSE User’s WorkshopOctober 2006

Rick Shoup, Research Analyst

Center for Postsecondary Research, Indiana

University Bloomington

Page 2: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

Goals

Identify key components of the NSSE datafile

Introduce users to SPSS command syntax

Expose users to less commonly used SPSS functions

Highlight how SPSS can save time

Demonstrate practical application of SPSS to generate customized NSSE reports

Make NSSE data more accessible

Page 3: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

NSSE Datafile

Core survey items

Administration fields

Institution-provided flags

Student-level benchmark indices and weights

Codebook and SPSS labels/values as references

Page 4: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

Graphic User Interface (GUI)

“Point-and-click” environment

Front-end interface that automatically generates command syntax

Most GUI processes can be “pasted” to the syntax editor

Page 5: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

Command Syntax

Powerful command language provided by SPSS

Runs “behinds the scenes”

Rendered in the third major SPSS window – the Syntax Editor

Page 6: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

KEY Red = SPSS commands

Green = Variables from data file Purple = Values vary depending upon department (eventually replaced by Macro keyword arguments)

*Part I: “Get file” retrieves SPSS data file.

GET FILE = 'C:\AIR_SPSS_Demo_06.sav'. *Part II: Flagging of survey respondents for inclusion in appropriate report column: department, college, university.

if (dep_code eq 1) depart = 1. if (col_code eq 1 and dep_code ne 1) college = 1. if (dep_code ne 1) univers = 1.

*Part III: Setting labels for variables in order to have column headings defined correctly.

VARIABLE LABEL depart 'English'/ college 'Arts & Humanities'/univers 'University'. *Part IV: Ctables command syntax puts all the report pieces together (see syntax manual for details).

CTABLES / table (Q1 + Q2 + Q3 + Q4 + Q5 + Q6 + Q7 + Q8) [count colpct] by (depart + college + univers) / categories variables = Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8 Total = yes / Title Title = '2004 Departmental Questionnaire Frequency Distributions: English Department (Senior Class)'.

Page 7: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

Scripts

SPSS scripts program tasks that cannot be done with command syntax, including:

Scripts use Sax Basic programming language

Scripts are created and modified in the fourth major SPSS window, the script window

- Bold lines in a report

- Print reports

- Save output

Page 8: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

Basic SPSS functions

Opening files

Creating variables

Specifying variable and value labels/formats

Frequencies

Crosstabulations

Page 9: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

Advanced SPSS functions

Ctables

Scripts

OMS

Page 10: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

We want to build a report that presents a side-by-side comparison of the Student-Faculty Interaction items for your institution’s Arts & Humanities, Biology, and Education Students.

Walk-Through

Page 11: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

Develop a frequency report that shows only female (gender = 2) Arts & Humanities, Business, and Social Science students side-by-side.

Use only the Academic Challenge items:

(workhard, analyze, synthesz, evaluate, applying)

Also save a copy of the report in MS Excel but don’t include Business results.

Use a script to bold the “total” row in the SPSS output.

Your Turn!

Page 12: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

IR offices are often under pressure to produce customized reports FAST

SPSS syntax can standardize most institutional research demands and alleviate drudgery

Use your imagination—syntax can be used in many different ways

Summary

Page 13: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

References

Levesque, R. (2003). SPSS Programming and Data Management. A Guide for SPSS and SAS Users. Chicago, IL: SPSS Inc.

www.spsstools.net

Programming with SPSS Scripts – An SPSS Training Manual

SPSS User Manuals & Command Syntax Reference

Page 14: Using SPSS to Report NSSE Data: Transform Your Analyses and Save Time with SPSS Regional NSSE User’s Workshop October 2006 Rick Shoup, Research Analyst

For More Information

Email: [email protected]

website: http://www.nsse.iub.edu