Auto Stretching
Auto Stretching using Run Script
Example 1
Summary: Creates and configures a path diagram in JMP, enabling customization of appearance and interaction with data.
Code:
dt = Open("data_table.jmp");
dist = dt << Run Script( "Distribution" );
frame = (dist << Report)[Frame Box( 1 )];
frame << Set Auto Stretching( 1, 1 ) << Set Max Size( 10000, 10000 );
Code Explanation:
- Open data table;
- Run Distribution script.
- Access first frame box.
- Enable auto stretching.
- Set max size to 10000x10000.
Example 2
Summary: Visualizes and configures a path diagram in JMP, allowing users to customize appearance settings such as color, thickness, and transparency.
Code:
dt = Open("data_table.jmp");
dist = dt << Run Script( "Distribution" );
frame = (dist << Report)[Frame Box( 1 )];
frame << Set Auto Stretching( 1, 1 ) << Set Max Size( 10000, 10000 );
frame << Set Window Size( 600, 900 );
Code Explanation:
- Open data table;
- Run Distribution script.
- Access first frame box.
- Enable auto stretching.
- Set max size to 10000x10000.
- Set window size to 600x900.