Show Plot

Render a stored plot chart.

Overview

This procedure displays a plot that was previously created using create a plot. It supports scatter, line and box plots.

Syntax

Below is a line-by-line overview of the automation syntax. Expand each line to learn more.

chevron-rightshow the plothashtag

What does it do?

Displays the current plot.

Where does it go?

This phrase should be written on a new line.

Is it required?

✅ Yes — This phrase is required.

Does it require data?

✅ Yes — A reference to the plot must be defined in the automation.

chevron-rightthe dpi is xhashtag

What does it do?

Overrides the default resolution.

Where does it go?

Indented under show the plot with.

Is it required?

❌ No — This phrase is optional.

Does it require data?

✅ Yes — Replace x with a numeric value (dots per inch). The default is 600.

Example

the dpi is 300

Examples

1. Basic Display

create a scatter plot where
    the x values are [1, 2, 3, 4, 5]
    the y values are [85, 90, 78, 92, 88]
    the title is "Performance vs Experience"
show the plot

2. Custom Resolution Display

Last updated

Was this helpful?