Hi JMP Community,
I would like to know if it is possible to evaluate(in JMP 13.1) trends in a data where X is ordinal (4 Groups) and Y is continuous (see attached file).
Based on a visual inspection, it appears that the means of Measurements are progressively higher with each group but I have not been able to find a method to evaluate this formally.
Thank you for your help.
TS
@Thierry_S, in JMP 13 Graph Builder, you can add a Line of Fit via the UI or use this saved script
Graph Builder(
Variables( X( :GROUP ), Y( :MESUREMENTS ) ),
Elements(
Points( X, Y, Legend( 3 ) ),
Points( X, Y, Legend( 4 ), Summary Statistic( "Mean" ) ),
Line( X, Y, Legend( 5 ) ),
Line Of Fit( X, Y, Legend( 6 ), R²( 1 ), Equation( 1 ) )
),
SendToReport( Dispatch( {"Line Of Fit"}, "", OutlineBox, {Close( 0 )} ) )
)
Here is the result.
However, I would follow this approach:
However, when looking for a shift in the "distribution" of these groups, I like to take a different approach:
Let me reiterate, this is an exploratory analysis. Any modeling or further investigation should be placed on the drivers/cause of the shift.
@Thierry_S, in JMP 13 Graph Builder, you can add a Line of Fit via the UI or use this saved script
Graph Builder(
Variables( X( :GROUP ), Y( :MESUREMENTS ) ),
Elements(
Points( X, Y, Legend( 3 ) ),
Points( X, Y, Legend( 4 ), Summary Statistic( "Mean" ) ),
Line( X, Y, Legend( 5 ) ),
Line Of Fit( X, Y, Legend( 6 ), R²( 1 ), Equation( 1 ) )
),
SendToReport( Dispatch( {"Line Of Fit"}, "", OutlineBox, {Close( 0 )} ) )
)
Here is the result.
However, I would follow this approach:
However, when looking for a shift in the "distribution" of these groups, I like to take a different approach:
Let me reiterate, this is an exploratory analysis. Any modeling or further investigation should be placed on the drivers/cause of the shift.