- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Box plot setting or JSL update
As the picture show, the LSL red line is un-show, how to set or update JSL to show as USL always shows?
This post originally written in German and has been translated for your convenience. When you reply, it will also be translated back to German.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Box plot setting or JSL update
If you add
theCol = Column Name( As List( Loc( things, distinctlst[i] ) )[1] );
colMin = Min( Col Min( As Column( theCol ) ), As Column( theCol )[1] );
colMax = Max( Col Max( As Column( theCol ) ), As Column( theCol )[2] );
Myboxplot[axisbox( 2 )] << Min( colMin - .1 * Abs( colMax - colMin ) );
Myboxplot[axisbox( 2 )] << Max( colMax + .1 * Abs( colMax - colMin ) );
after your line
Myboxplot = mybox << report;
and before line
Myboxplot << save picture( Word( 1, Column Name( As List( Loc( things, distinctlst[i] ) )[1] ), " . " ) || ".emf", emf );
you should get what you want.
See the attached JSL file for the complete JSL update
Jim
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Box plot setting or JSL update
If you add
theCol = Column Name( As List( Loc( things, distinctlst[i] ) )[1] );
colMin = Min( Col Min( As Column( theCol ) ), As Column( theCol )[1] );
colMax = Max( Col Max( As Column( theCol ) ), As Column( theCol )[2] );
Myboxplot[axisbox( 2 )] << Min( colMin - .1 * Abs( colMax - colMin ) );
Myboxplot[axisbox( 2 )] << Max( colMax + .1 * Abs( colMax - colMin ) );
after your line
Myboxplot = mybox << report;
and before line
Myboxplot << save picture( Word( 1, Column Name( As List( Loc( things, distinctlst[i] ) )[1] ), " . " ) || ".emf", emf );
you should get what you want.
See the attached JSL file for the complete JSL update
Jim