Diff for "FAQ/pearson" - CBU statistics Wiki
location: Diff for "FAQ/pearson"
Differences between revisions 1 and 2
Revision 1 as of 2009-12-01 12:20:44
Size: 936
Editor: PeterWatson
Comment:
Revision 2 as of 2009-12-01 12:22:15
Size: 1027
Editor: PeterWatson
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Line 6: Line 5:
The following syntax in SPSS is equivalent The following syntax for regression and correlations in SPSS give equivalent tests of whether a correlation between x and y are zero.

The relationship between the Pearson correlation and a simple regression coefficient

The Pearson correlation equals the beta coefficient in SPSS which is the regression estimate from using one standardized predictor to predict a standardized outcome. The t-test in the regression for the unstandardized coefficient, B, is equivalent to testing if a correlation equals zero. The regression model is assumed to contain the intercept as well as the predictor.

The following syntax for regression and correlations in SPSS give equivalent tests of whether a correlation between x and y are zero.

REGRESSION
  /MISSING LISTWISE
  /STATISTICS COEFF OUTS R ANOVA
  /CRITERIA=PIN(.05) POUT(.10)
  /NOORIGIN
  /DEPENDENT y
  /METHOD=ENTER x  .

CORRELATIONS
  /VARIABLES=y x
  /PRINT=TWOTAIL NOSIG
  /MISSING=PAIRWISE .

Reference

Cohen, J., & Cohen, P. (1983). Applied multiple regression/correlation analysis for the behavioral sciences (2nd edition). Hillsdale, NJ: Erlbaum.

None: FAQ/pearson (last edited 2013-03-08 10:17:59 by localhost)