Traffic Light Plot

This plot shows the normalized values range of each response in relation to the mean value, standard deviation, a safety and a failure limit.

Settings
OptionDescription
Common Settings
Show values sigma basedToggles between the sigma based view and the original values.
Show statistic valuesToggles the view of a simplified box whisker with mean and +/- sigma value times sigma factor.
Sigma factorDetermines the length of the whiskers for the statistic values.
Preferences

The following preference settings are available:

  • Appearance

    • Font size

    • Line width

    • Symbol size

    • Enable axes

  • Axis Ranges

  • Axis Formats

  • Axis rotation

  • Labels

  • Legend

  • Log Axes

  • Window appearance

For more details, see Plot Preference Settings.

Python Scripting

Create Visual

Creates a traffic light plot visual using data with data_id.

    traffic_light_plot = Visuals.TrafficLightPlot(
        Id("Traffic light plot"),
        data_id
    )
                            

Add to Postprocessing

Adds traffic light plot visual in postprocessing to control_container, using the specified relative positioning.

    control_container.add_control (
        traffic_light_plot,
        True,
        RELATIVE_POSITIONING,
        0., 0., 1., 1./2.
    )