Skip to main content

SELECTING CASES in SPSS
Sometimes a researcher may wish to restrict an analysis to only a subset of the data file. For example, a researcher might want to do an analysis on only the female participants, only on American citizens, or only on those who disagreed with a presented message. You can have SPSS only perform analyses on a subset of cases meeting specified criteria by selecting cases.

For example, suppose you believed that an experimental manipulation would work better on female participants. You might therefore want to do an analysis only on the female participants. Assuming that you had a variable named gender in your data set where men had a value of 1 and women had a value of 2, you could select only women for analysis in SPSS by taking the following steps

Choose Data then Goto Select Cases.
Click the radio button next to If condition is satisfied.
Click the If button.
Type gender = 2 in the popup window.
Click the Continue button.
Click the OK button.

After running this procedure, the dataset will have slashes crossing out the cases that are excluded (in this case, it should cross out all the male participants). Any further analyses on this data set (until you issue another Select Cases command or load another data set) will be performed solely on the female participants.

An analyst can restrict the data set in more complicated ways by using the Boolean operator AND (represented by the symbol &) or the Boolean operator OR (represented by the symbol |). The & symbol tells SPSS that a case has to meet two specific criteria to be included in the analysis, while the | symbol tells SPSS that it should include a case if it meets either of two criteria. As an example, let us assume that the data set included a variable named class where 1 = freshmen, 2 = sophomore, 3 = junior, and 4 = senior. If we only wanted to include cases that represented female juniors we would perform the following steps.

Choose Data then Goto Select Cases.
Click the radio button next to If condition is satisfied.
Click the If button.
Type (gender=2) & (class=3) in the popup window.
Click the Continue button.
Click the OK button.

If we wanted to include cases that were either female or juniors (so that the analysis would include all females and any males who happened to be juniors) we would take the following steps.

Choose Data then Goto Select Cases.
Click the radio button next to If condition is satisfied. Click the If button.
Type (gender=2) | (class=3) in the popup window.
Click the Continue button.
Click the OK button.

You may notice that one of the buttons on the selection keypad looks like ~=. This symbol stands for .not equal to.. Sometimes it is easier to identify what cases to exclude than it is to identify what cases to include. For example, you could select everyone in the data set except sophomores by taking the following steps.

Choose Data then Goto Select Cases.
Click the radio button next to If condition is satisfied.
Click the If button.
Type class~=2 in the popup window.
Click the Continue button.
Click the OK button.

Popular posts from this blog

Scholarships in Korean University

Chosun University Korea is offering scholarships for international students for 2012 Spring semester. Important dates are as follows: Application Deadline November 30, 2011 Admission Announcement December 30, 2011 Registration Deadline January 31, 2012 First day of class March 2, 2012 You need the following documents for admission: Required Documents 1. Application Form for Graduate School 2. Self Introduction 3. Study Plan 4. Letter of Recommendation   5 . Request for Academic Credentials Verification 6 . Check List for Application Documents 7 D iploma from undergraduate institution(s) 8 . Transcript from undergraduate institution(s) 9 . Di ploma(s) from graduate institution(s) - Doctorate Only 10 . Transcript from graduate institution(s) – Doctorate Only 1 1 . Official certificate of language score(TOEFL, IELTS, TEPS, TOPI...

US Scholarships Updates

I. Financial Aid UG: Eastern Illinois University Scholarships for New International Students UG: College of Saint Benedict and Saint John's University Scholarships UG: Fresno Pacific University PresidentĆ¢€™s Scholarship UG/Grad: East Tennessee State University Academic Merit Scholarship UG/Grad: Southern Oregon University Cascade & Siskiyou International Student Scholarships UG/Grad: CollegeWeekLive $1,000 Scholarship Grad/Postgrad/Postdoc: The University of Michigan Law School Fellowships II. Campus News • Live Online: College Week Live International Day October 13th • International Students Get Job Search Tips at Seminar • University of Missouri Celebrates International Day • University of California Davis Announces Global Achievement Program I. Financial Aid EASTERN ILLINOIS UNIVERSITY SCHOLARSHIPS FOR NEW INTERNATIONAL STUDENTS Eastern Illinois University is proud to announce scholarships for new international students! Undergraduate students that have...

RELIABILITY

Ideally, the measurements that we take with a scale would always replicate perfectly. However, in the real world there are a number of external random factors that can affect the way that respondents provide answers to a scale. A particular measurement taken with the scale is therefore composed of two factors: the theoretical "true score" of the scale and the variation caused by random factors. Reliability is a measure of how much of the variability in the observed scores actually represents variability in the underlying true score. Reliability ranges from 0 to 1. In psychology it is preferred to have scales with reliability greater than 0.7. The reliability of a scale is heavily dependent on the number of items composing the scale. Even using items with poor internal consistency, you can get a reliable scale if your scale is long enough. For example, 10 items that have an average inter-item correlation of only .2 will produce a scale with a reliability of .714. Ho...