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

Call for Papers

1. Special issue call for papers from Internationa l Journal of Conflict Management Areas / Topics Conflict Conflict management Dispute resolution Fairness Justice Mediation and arbitration Negotiation Peace studies Related topics Manuscript submission deadline: 28-11-2011. For details visit International Journal of Conflict Management 2. Inauguration issue call for papers from Far East Journal of Psychology and Business Areas / Topics Money, Banking, Finance and Investment Psychology and Human Related Issues Marketing Security Markets, Business Economics Accounting Practices Social Issues and Public policy  Management Organization  Statistics and Econometrics  Administration and Management  International Trade Industrial Relations and Labor  Business Communication  Mass Communication  History and Psychology Cold War and Business  Inter-Cultural Encounters  Peace and Unity for Business Growth Deadline for Su...

The Development of Female Global Managers: The Role of Mentoring and Networking

Abstract of Research Paper: This paper explores the role of mentoring and networking in the career development of global female managers. The paper is based on data collected from interviews with 50 senior female managers. The voices of the female managers illustrate some of the difficulties associated with informal organisational processes, in particular mentoring and networking, which hinder their career development. The findings confirm that female managers can miss out on global appointments because they lack mentors, role models, sponsorship, or access to appropriate networks – all of which are commonly available to their male counterparts. The interviewees suggest that men, as the dominant group, may want to maintain their dominance by excluding women from the informal interactions of mentoring and networking. The findings further suggest that if females had more access to networks and mentors they could be socialised in both the formal and informal norms of the organisation an...

FACTOR ANALYSIS

Factor analysis is a collection of methods used to examine how underlying constructs influence the responses on a number of measured variables. There are basically two types of factor analysis: exploratory and confirmatory. Exploratory factor analysis (EFA) attempts to discover the nature of the constructs influencing a set of responses. Confirmatory factor analysis (CFA) tests whether a specified set of constructs is influencing responses in a predicted way. SPSS only has the capability to perform EFA. CFAs require a program with the ability to perform structural equation modeling, such as LISREL or AMOS. The primary objectives of an EFA are to determine the number of factors influencing a set of measures and the strength of the relationship between each factor and each observed measure. To perform an EFA, you first identify a set of variables that you want to analyze. SPSS will then examine the correlation matrix between those variables to identify those that tend to vary togeth...