I would like to save the FPCA summaries automatically using JSL.
It seems I need to script the actions by clicking on the menu options.
So far, I can create the model with the using this script FPCA
// → Data Table( "Fermentation Process" )
Open( "$SAMPLE_DATA/Functional Data/Fermentation Process.jmp" );
Functional Data Explorer(
Y( :Ethanol ),
X( :Time ),
ID( :BatchID ),
Data Processing( Align 0 to 1 ),
Direct Functional PCA(
Functional PCA(
1,
FPC Profiler(
1,
Confidence Intervals( 1 ),
Term Value(
Aligned Time( 0.5, N Levels( 100 ), Lock( 1 ), Show( 1 ) ),
FPC 1( 0, Lock( 0 ), Show( 1 ) ),
FPC 2( 0, Lock( 0 ), Show( 1 ) ),
FPC 3( 0, Lock( 0 ), Show( 1 ) ),
FPC 4( 0, Lock( 0 ), Show( 1 ) ),
FPC 5( 0, Lock( 0 ), Show( 1 ) )
)
)
)
)
)