Hi,
I'm building a graph using a scattered plot.
My points are based on the "mean" statistics.
I'd like to add labels of "mean" and "N" statistics to the same points.
Since the scale is very different between "mean" and "N", adding second set of same points to the graph hides all the differences of "mean" statistics.
How can I show both statistics to the single set of "mean" points?
I'm hoping I don't have to use JSL script if there's a simple way to do this.
If I have to script, I tried this but "N" labels never show up while "mean" labels show up as expected.
Can anybody help?
Thank you so much!
Graph Builder(
Variables( X( :p ), Y( :a ) ),
Elements(
Points(
X,
Y,
Legend( 5 ),
Summary Statistic( "Mean" ),
Marker Size( 8 ),
Marker Color( "Medium Blue" ),
Label( "Label by Value" ),
)
),
Elements(
Text(
X,
Y,
Summary Statistic( "N" ),
Label( "Name and Value" ),
Jitter( 0 ),
Label Justification( "Right" ),
Set Font Style( "Bold" ),
Set Font Size( 12 )
)
),
SendToReport( Dispatch( {}, "Graph Builder", OutlineBox, {Set Title( "Mean Points with N Labels" )} ) )
);
txnelson edit: moved code to JSL display box
