Move to Project
Move to Project using Run Script
Summary: Creates and configures a Repeated Measures Model in JMP, allowing for the analysis of data with multiple measurements.
Code:
dtAn = Open("data_table.jmp");
objAn_RMM = dtAn << Run Script( "Repeated Measures Model" );
Move to Project( Windows( {dtAn} ) );
Code Explanation:
- Open data table;
- Run Repeated Measures Model script.
- Move dataset to project.
Summary: Process of opening a data table and moving it to a project in JMP.
Code:
dtCit = Open("data_table.jmp");
Move to Project( Windows( {dtCit} ) );
Code Explanation:
- Open data table.
- Move data table to project.