How to set graph size when export to PPT by JSL (graph builder)
Hello, I am a beginer of jsl . I have one question about setting picture size when saving to PPT. Below script does work when I was trying to save a bivariate graph. Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = bivariate( y( :weight ), x( :height ), Group By(:sex), Fit Line({report(0)}) );
rbiv = biv << report;
rbiv[Framebox(1)] << row legend(:sex, color(1), marker(1))
...