The paired option in the very old MULT RESPONSE procedure was provided to
handle data stored at the wrong case level. If you restructure your file
using VARSTOCASES, then the paired sets become a simple two-way crosstabs.
Give your 4 variables, this VARSTOCASES command creates two variables with
twice as many cases:
VARSTOCASES /MAKE trans1 FROM v1 v2
/MAKE trans2 FROM v3 v4
/KEEP =
/NULL = KEEP.
-----Original Message-----
From: SPSSX(r) Discussion [mailto:
[hidden email]] On Behalf Of
Eugenio Grant
Sent: Friday, August 03, 2007 11:59 AM
To:
[hidden email]
Subject: Paired Custom Table
Hi:
How can I apply the PAIRED command to a Custom Multiple Response Table. I
can use in Mult Response tables but not in other cases.
Where do I specify that I need a paired table. This is the simplified
syntax:
* Multiple Response Tables.
TABLES
/FORMAT BLANK MISSING('') /MRGROUP $set1 'set1' var1 var2
/MRGROUP $set2 'set2' var3 var4
/GBASE=CASES
/TABLE=$set1 BY $set2 /TITLE 'Paired Table'.