SPSS Statistics

 View Only
Expand all | Collapse all

Display a correlation matrix showing only the lower half triangular portion in spss

  • 1.  Display a correlation matrix showing only the lower half triangular portion in spss

    Posted Mon July 26, 2021 12:57 PM
    I want to display only one triangle of a correlation matrix
    how can I enter the syntax?

    like this:


    ------------------------------
    ZHANG KUNYU
    ------------------------------

    #SPSSStatistics


  • 2.  RE: Display a correlation matrix showing only the lower half triangular portion in spss

    IBM Champion
    Posted Mon July 26, 2021 01:03 PM
    If you have at least V27, you can specify this the the CORRELATIONS command, e.g.,
    CORRELATIONS
      /VARIABLES=salary salbegin jobtime
      /PRINT=TWOTAIL NOSIG LOWER.

    If your version is older or you want to do more elaborate formatting such as highlighting significant or large correlations, check out the FormatCorrelations extensions available from the Extensions > Extension Hub menu.

    --