Other Measures of Correlation


  1. The Spearman Correlation Coefficient
  2. The Spearman Correlation Coefficient is designed to measure the degree of relation for two ordinal variables. It is designed to be used when:

    To compute the Spearman Correlation Coefficient, you first convert your two variables into ranks, and then follow the procedure for Pearson correlation.

    ViSta Applet: Transform variables into ranks by choosing the Transform menu's Ranks item. This produces a new dataset in which all ordinal or numeric variables have been converted into ranks. You now proceed as you would for the Pearson Correlation.

    The commands to do this are:

    (browse-data)
    (ranks)
    (browse-data)
    (summarize-data :moments t :correlations t)
    (correlations)
    (browse-data)
    

  3. The Point-Biserial Correlation Coefficient
  4. The Point-Biserial Correlation Coefficient is designed to measure the degree of relation for two variables when one variable is quantitative (interval or ratio) and the other variable is binary (has only two values --- also called dichotomous).

    To compute the Point-Biserial Correlation Coefficient, you first convert your binary variable into 1's and 0's, and then follow the procedure for Pearson correlation.

    ViSta Applet: Code your binary variable with 1's and 0's. Once you have done this you proceed as you would for the Pearson Correlation.

    The commands to do this (given that you already have a binary variable, and that you want to select it and some other, non-binary variables) are:

    (list-variables)
    (select-variables '("GPA" "MathSAT" "VerbSAT" "GenderN"))
    (summarize-data :moments t :correlations t)
    (correlations)
    (browse-data)
    

  5. The Phi Correlation Coefficient
  6. The Phi Correlation Coefficient is designed to measure the degree of relation for two variables which are binary (each has only two values --- also called dichotomous).

    To compute the Point-Biserial Correlation Coefficient, you first convert your two binary variable into 1's and 0's, and then follow the procedure for Pearson correlation.

    ViSta Applet: Code both of your binary variables with 1's and 0's. Once you have done this you proceed as you would for the Pearson Correlation.

    The commands to do this (given that you already have a datafile with at least two binary variables) are:

    (browse-data)
    (summarize-data :moments t :correlations t)
    (correlations)
    (browse-data)