0% found this document useful (0 votes)
29 views

Correlation Matrix Output SPSS

This document provides SPSS syntax to create a correlation matrix or covariance matrix file from a list of variables. The syntax directs SPSS to generate a correlation or covariance matrix from the specified variables and save it as an output file with an .out extension. Adding "/MCONVERT" to the syntax converts it to a variance/covariance matrix file with variances along the diagonal.

Uploaded by

odie99
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views

Correlation Matrix Output SPSS

This document provides SPSS syntax to create a correlation matrix or covariance matrix file from a list of variables. The syntax directs SPSS to generate a correlation or covariance matrix from the specified variables and save it as an output file with an .out extension. Adding "/MCONVERT" to the syntax converts it to a variance/covariance matrix file with variances along the diagonal.

Uploaded by

odie99
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

Creating a SPSS Correlation Matrix or Covariance Matrix File

This syntax will do the trick:


CORRELATIONS
/VARIABLES=<list of variables>
/MISSING=LISTWISE
/MATRIX=OUT(*).
If you want a variance/covariance matrix instead, append this line:
MCONVERT.
The correlation matrix file will look like this:

The variance/covariance file will look like this:

Return to Wuenschs SPSS Lessons Page.

You might also like