
IBM SPSS Statistics (or “SPSS” for short) is super easy software for editing and analyzing data.
This tutorial presents a quick overview of what SPSS looks like and how it basically works.
SPSS’ main window is the data editor. It shows our data so we can visually inspect it.
This tutorial explains how the data editor works: we'll walk you through its main parts and point out some handy tips & tricks.
SPSS syntax is computer code used by SPSS for analyzing data, editing data, running statistical tests and more.
Using SPSS syntax is super easy and saves tons of time and effort. This tutorial quickly gets you started!
SPSS’ output window shows the tables, charts and statistical tests you run while analyzing your data.
This tutorial walks you through some basics such as exporting tables and charts to WORD or Excel. We'll also point out some important tricks such as batch editing and styling tables and charts.
The median is basically the value that separates the 50% lowest from the 50% highest values.
Example: a median income of $2,500 means that 50% of all people earn less and 50% earn more than that amount.
A Pearson correlation is a number between -1 and +1 that indicates how strongly two variables are linearly related.
This simple tutorial quickly explains the basics with outstanding illustrations and examples.
A frequency distribution is an overview of all values in some variable and how often these occur.
Like so, a frequency distribution shows how frequencies are distributed over values. This tutorial quickly makes things clear with some simple examples.
In SPSS, missing values refer to
We'll quickly walk you through both types. We'll also show how to detect, set and deal with missing values in SPSS.
Factor analysis examines which variables in your data measure which underlying factors.
This tutorial illustrates the ideas behind factor analysis with a simple step-by-step example in SPSS.
The Kolmogorov-Smirnov test examines if a variable is normally distributed in some population.
This “normality assumption” is required for t-tests, ANOVA and many other tests. This tutorial shows how to run and interpret a Kolmogorov-Smirnov test in SPSS with some simple examples.
SPSS has 2 types of variables:
Numeric variables come in several formats such as plain numbers, dates and percentages. Working with SPSS becomes much faster and easier if you're aware of variable types and formats.
Effect size is an interpretable number that quantifies the difference between data and some hypothesis.
Effect size measures are useful for comparing effects across and within studies. This tutorial helps you to choose, obtain and interpret an effect size for each major statistical procedure.
Statistical significance is roughly the probability of finding your data under some null hypothesis.
If this probability (or “p”) is low -usually p < 0.05- then your data contradict your null hypothesis. In this case, you conclude that the hypothesis is not true.
A null hypothesis is an exact statement about a population that we try to reject with sample data.
Example: 20% of some population carry virus X. If a sample from this population shows a very different percentage, then we reject this null hypothesis.
Measurement levels are types of variables that tell you how they should be analyzed. There's 4 types:
This tutorial quickly walks you through with a simple flowchart and some examples.
In SPSS, IF computes a new or existing variable but for a selection of cases only.
For example: IF(GENDER = 0) SCORE = MEAN(Q1 TO Q5). computes “score” as the mean over variables Q1 to Q5 but only for cases whose gender is 0 (female).
SPSS FILTER excludes a selection of cases from all subsequent analyses until you switch it off again.
Using a filter comes down to creating a (new) filter variable and activating it. This tutorial shows the easy way to do so and points out some nice alternatives as well.
The correct way to convert a string variable into a numeric one is the ALTER TYPE command.
This tutorial walks you through with some examples. We'll point out some tricks, pitfalls and alternatives as well.
The right way to compute means over variables is SPSS’ MEAN function.
For example: COMPUTE MEAN_SCORE = MEAN(Q1 TO Q5). computes mean_score as the mean over variables Q1 to Q5. This method also works correctly if you there's any missing values in your data.
THIS TUTORIAL HAS 78 COMMENTS:
By Ruben Geert van den Berg on March 31st, 2021
Hi Mounir!
Your syntax runs fine on my machine.
One problem could be your locale (periods are not seen as decimal separators): if I set it to Dutch
set locale 'nl_nl'.
the syntax crashes but with a different error. For English, run
set locale 'english'.
DATA LIST LIST / X2IM X2DM (2F9.3) dfIM dfDM n (3F8.0) p.
BEGIN DATA
414.697 44.79 36 26 192 0
END DATA.
If that doesn't solve things, then I need more info.
Kind regards,
Ruben
By Alemu Gemechu on April 3rd, 2021
Hi there,
I want to ask whether direct data entry to SPSS
data view or importing from word/excel file is more easier?
By Ruben Geert van den Berg on April 4th, 2021
Hi Alemu!
Try to avoid typing data into SPSS/Excel whenever you can. Do this only when you have your data on paper (surveys) only.
Whenever you have your data as some computer file, Excel is somewhat better than other file formats for importing into SPSS but it is still not really good.
Other files (.dat/.txt/.docx/.csv) are worse than Excel but still better than typing over or copy-pasting in SPSS.
Hope that helps!
SPSS tutorials