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.
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.
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 ) )
)
);