Hi JMPers,
in the multivariate plattform I would like to save all T2 values in my datatable via script.
Sadly I cannot figure out the command to save the T2-values in JSL. Further the report is using a by-variable so that I need to do something like "Hold CTRL pressed and left-click on T2-hotspot => Save T2" just in JSL.
Is that possible?
bc = Open("$SAMPLE_DATA/Big Class.jmp");
mlt = Multivariate(
SendToByGroup( {:age == 12} ),
Y( :height, :weight ),
Estimation Method( "Row-wise" ),
Matrix Format( "Square" ),
Scatterplot Matrix(
Density Ellipses( 1 ),
Shaded Ellipses( 0 ),
Ellipse Color( 3 )
),
T²( 1 ),
By( :age ),
SendToByGroup(
{:age == 12},
SendToReport(
Dispatch(
{"Multivariate age=12"},
"Scatterplot Matrix",
OutlineBox,
{Close( 1 )}
)
)
),
SendToByGroup(
{:age == 13},
SendToReport(
Dispatch(
{"Multivariate age=13"},
"Scatterplot Matrix",
OutlineBox,
{Close( 1 )}
)
)
),
SendToByGroup(
{:age == 14},
SendToReport(
Dispatch(
{"Multivariate age=14"},
"Scatterplot Matrix",
OutlineBox,
{Close( 1 )}
)
)
),
SendToByGroup(
{:age == 15},
SendToReport(
Dispatch(
{"Multivariate age=15"},
"Scatterplot Matrix",
OutlineBox,
{Close( 1 )}
)
)
),
SendToByGroup(
{:age == 16},
SendToReport(
Dispatch(
{"Multivariate age=16"},
"Scatterplot Matrix",
OutlineBox,
{Close( 1 )}
)
)
),
SendToByGroup(
{:age == 17},
SendToReport(
Dispatch(
{"Multivariate age=17"},
"Scatterplot Matrix",
OutlineBox,
{Close( 1 )}
)
)
)
)