cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

t-test values in graph?

cyoung5
Level I

Can I add my student t-test values into my bar graph in graph builder?, If so, how?

1 REPLY 1
txnelson
Super User


Re: t-test values in graph?

You can annotate the output from your Graph Builder by selecting from the tool bar the Text Box input:

10686_pastedImage_0.png

If you are asking if this can be automated, the answer is also yes, through a script.

Names Default To Here( 1 );

dt = Open( "$SAMPLE_DATA\big class.jmp" );

ow = Oneway( Y( :height ), X( :sex ), t Test( 1 ) );

tratio = (Report( ow )["t Test"][Number Col Box( 3 )] << get)[1];

pvalue = (Report( ow )["t Test"][Number Col Box( 4 )] << get)[1];

Graph Builder(

Size( 528, 447 ),

Show Control Panel( 0 ),

Variables( X( :sex ), Y( :height ) ),

Elements( Box Plot( X, Y, Legend( 4 ) ) ),

SendToReport(

  Dispatch(

   {},

   "Graph Builder",

   FrameBox,

   Add Text Annotation(

    Text( "t="||format(eval(tratio),"Fixed Dec",8,4)||"\!np<"||format(eval(pvalue),"pvalue",4)),

    Text Box( {200, 64, 261, 103} )

   )

  )

)

);

Jim