*If i think the default picture size is small and i want to enlarge it, what should i do ?
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Bivariate( Y( :weight ), X( :height ) );
*The script i use to control the size is below, but the pic has no change after i add size(1000, 800), Why it now work?
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Bivariate(
Size( 1000, 800 ),
Y( :weight ),
X( :height )
);