Correlation Matrix

This plot displays linear correlation coefficients, histograms and anthill plots for all selected input and output parameters and their combinations respectively, combined into one plot. A selection in this plot alters the parameter selection globally in the postprocessing.

Settings
OptionDescription
Common Settings
Histogram classesSets the value for the number of bars displayed in histograms when View as is not All correlations.
View asSelect one of the following options:
  • All correlations—View only correlation tiles

  • Correlations vs. Anthills—View correlations in upper left area, histograms on main diagonal and anthills in lower right area

  • Anthills vs. Correlations— View correlations in lower right left area, histograms on main diagonal and anthills in upper left area

  • All Anthills—View Histograms on main diagonal, all other points view Anthills

RangesSelect one of the following options:
  • All—Total matrix

  • In-In—Parameter range at x-axis and y-axis

  • In-Out—Parameter range at x-axis and Responses + Criteria range at y-axis

  • Out-In—Range Responses + Criteria range at x-axis and Parameter at y-axis

  • Out-Out—Range Responses + Criteria range at x-axis and Responses + Criteria range at y-axis

Preferences

The following preference settings are available:

  • Appearance

    • Font size

    • Symbol size

  • Axis Ranges

  • Axes Rotation

  • Labels

  • Palette

  • Window appearance

For more details, see Plot Preference Settings.

Context Menu
OptionDescription
AppearanceShow/hide palette, choose font size or symbol size, enable/disable single bigger views by mouse overlay.
Display GroupsDisplays parts of the matrix using the following options:
  • All: Complete matrix

  • In-In: Parameter versus parameter

  • In-Out: Parameter versus responses/criteria

  • Out-In: Responses/criteria versus parameter

  • Out-Out: Responses/criteria versus responses/criteria

Activate/Deactivate dimensionsOpens the Activate/Deactivate dimensions dialog where you can show or hide one or more dimensions.

Python Scripting

Create Visual

Creates a Correlation Matrix using data with data_id.

    ext_corr = Visuals.ExtendedCorrelationMatrix(
        Id("Extended Correlation Matrix"),
        data_id
    )
                            

Add to Postprocessing

Adds Correlation Matrix in postprocessing to control_container, using the specified relative positioning.

    control_container.add_control (
        ext_corr,
        True,
        RELATIVE_POSITIONING,
        0, 70/100., 1/2., 30/100.
    )