Hi,
I am struggling with scripting a Fit Y by X Group to display graphs vertically instead of horizontally. Any suggestions? Example script is below. I am using JMP10.
Thanks!
/*
bigClass = Open( "$SAMPLE_DATA/Big Class.JMP" );
one = bigClass << Oneway(
Y( :height, :weight ),
X( :age ),
);
// How can I change the Oneway layout to vertical?
(one << Report)[Outline Box( 1 )] << Horizontal( 0 );
*/