Lineup Box
Lineup Box using Log Capture
Summary: Executes Recurrence Analysis on a data table and extracts the report text content from the Lineup Box.
Code:
dt = Open("data_table.jmp");
Log Capture( rc = dt << Run Script( "Recurrence Analysis" ) );
sb = Report( rc )["Recurrence Analysis"][Lineup Box( 1 )][Text Box( 2 )] << get text;
Code Explanation:
- Open data table.
- Run Recurrence Analysis script.
- Capture report object.
- Extract Recurrence Analysis report.
- Access Lineup Box.
- Retrieve Text Box.
- Get text content.