Replacing 'Bivariate' with 'Graph Builder' in a 'Fit Group'
Hi community!
For ages I had a script where I was drawing bivariate plots in a fit group, like so:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Y_Parameters = {"height", "weight"};
Fit Group(
Bivariate( Y(Eval(Y_Parameters) ), X( :age ) ),
<<{Arrange in Rows( 3 )}
);
Key thing here is - I get a list of parameters in a form of list of strings, and then plot them one...