Using "Make Into Matrix" in JSL
Hi folks,
I would like to extract a table out of a report (Multivariate -> Multivariate) into a matrix as part of my script. Currently I am working with this:
collist = {:"X1", :"X2", :"X3", :"X4", :"X5"};
cor = Eval(Eval Expr(Multivariate(
Y( Expr(collist)),
Estimation Method( "Row-wise" ),
Matrix Format( "Square" ),
Scatterplot Matrix( 0 )
)));
r = (col <<Report)[Outline Box("Correlations")]
...