Text
Text using Run Script
Summary: Executes a SEM script with LGC and LDF, retrieves fit indices, and generates report text.
Code:
dt = Open("data_table.jmp");
obj = dt << Run Script( "SEM:LGC with LDF" );
obj << (Fit[1] << Fit Indices( 1 ));
report_text = obj << get text();
Code Explanation:
- Open data table.
- Run SEM script.
- Access first fit object.
- Enable fit indices.
- Retrieve report text.