When I run John's syntax with psppire.exe 0.8.4-g5ce6b1 on Windows 7
64-bit, it seems to work fine. When I add /TOTAL there is no effect
(because it's the default) but when I add /NOTOTAL, I get the following
error instead of output: ".1: error: Syntax error at end of command:
expecting variable name."
Here'e the EXAMINE command, the other syntax is unchanged:
EXAMINE
/VARIABLES = score BY gender
/PLOT = BOXPLOT
/COMPARE = GROUPS
/MISSING=LISTWISE
/NOTOTAL.
-Alan
On 29.12.2014 12:59, John Darrington wrote:
I think you need something similar to this:
DATA LIST LIST /score * gender *.
BEGIN DATA.
11 0
12 0
13 0
14 0
15 0
16 0
14 1
14 1
14 1
15 1
16 1
16 1
END DATA.
ADD VALUE LABEL gender 0 "Male" 1 "Female".
EXAMINE
/VARIABLES = score BY gender
/PLOT = BOXPLOT
/COMPARE = GROUPS
/MISSING=LISTWISE.
_______________________________________________
Pspp-users mailing list
Pspp-users@gnu.org
https://lists.gnu.org/mailman/listinfo/pspp-users