cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Kyle_B
Level I

Graph builder: add p-values

Hi,

 

I am plotting means of a response of three groups (BASE, LIV, SHAM) over time using graph builder.  So far I have been able to plot the means and STD, as you can see.

plot.png

I would like to add p-values from a t-test comparing LIV vs. SHAM at each time point without having to do in manuallly by adding a text box to the image, similar to what I did here.

plot_p-values.png

 Is this possible?  

 

My current script is below:

 

Graph Builder(
	Size( 757, 640 ),
	Variables( X( :time ), Y( :distal epi trab BMD ), Overlay( :study group ) ),
	Elements(
		Points(
			X,
			Y,
			Legend( 46 ),
			Summary Statistic( "Mean" ),
			Error Bars( "Standard Deviation" )
		),Line( X, Y, Legend( 13 ) )
	)
);

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Graph builder: add p-values

Here is a sample of how to add values to a Graph Builder output.  It isn't based upon your exact script, but I think you will be able to get from it the approach you will need to do to get your needs met.

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
dt:height << set property(
	"spec limits",
	{LSL( 55 ), USL( 65 ), Show Limits( 1 )}
);
gb = Graph Builder(
	Size( 534, 448 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 5 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"height",
			ScaleBox,
			{Add Ref Line( 58, "Solid", "Black", "MUSL", 1 )}
		)
	)
);
Report( gb )[FrameBox( 1 )] << Add Graphics Script(
Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Graph builder: add p-values

Here is a sample of how to add values to a Graph Builder output.  It isn't based upon your exact script, but I think you will be able to get from it the approach you will need to do to get your needs met.

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
dt:height << set property(
	"spec limits",
	{LSL( 55 ), USL( 65 ), Show Limits( 1 )}
);
gb = Graph Builder(
	Size( 534, 448 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 5 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"height",
			ScaleBox,
			{Add Ref Line( 58, "Solid", "Black", "MUSL", 1 )}
		)
	)
);
Report( gb )[FrameBox( 1 )] << Add Graphics Script(
Jim

Recommended Articles