p values for correlations using /MATRIX=OUT(*).

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

p values for correlations using /MATRIX=OUT(*).

Ben Whalley
Hi - I wondered if there was a straightforward way to have SPSS output p values for correlations when
outputting to a matrix? I have to create loads of formatted tables and it's much more convenient
doing it this way than trying to copy from the normal output.

Thanks for any advice,

Ben

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD
Reply | Threaded
Open this post in threaded view
|

Re: p values for correlations using /MATRIX=OUT(*).

Marta Garcia-Granero
Hi Ben
> Hi - I wondered if there was a straightforward way to have SPSS output p values for correlations when
> outputting to a matrix? I have to create loads of formatted tables and it's much more convenient
> doing it this way than trying to copy from the normal output.
>
You need to use OMS to capture the p-values, like in this piece of code
(extracted from a macro):

.
.
.
OMS /SELECT TABLES
 /IF COMMANDS='Non Par Corr' SUBTYPES='Correlations'
 /DESTINATION FORMAT=SAV
  OUTFILE='C:\Temp\Kendall.sav'.
NONPAR CORR
  /VARIABLES=!varlist
  /PRINT=KENDALL TWOTAIL NOSIG.
OMSEND.
.
.
.
HTH,
Marta GarcĂ­a-Granero

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD