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
jaykim
Level I

Dunnett’s tests in repeated measures

Hi,

I have data collected from a repeated meaures study.  Each subject's physiological data were measured eight times and 18 subjects participated in the study. The first measurement will be used as a reference value and compared with other 7 measures. So, I would like to use Dunnett's test instead of using Tukey HSD. Is there any simple way to do it?

Thanks,

Jay

1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Dunnett’s tests in repeated measures

You can use the Fit Y by X platform. Set measured variable as Y, sampling (1-8, Nominal or Ordinal) as X and Subject as Block. Then under the red triangle pick "Campare Means --> With Control, Dunnett's". You will be asked to specify which level that is treated as control.

Script example:

dt = Open( "$ENGLISH_SAMPLE_DATA/Blood Pressure.jmp" );

dt << Oneway(

          Y( :BP 8M ),

          X( :Dose ),

          Block( :Subject ),

          With Control( 1, {"Control"} ),

          Comparison Circles( 1 )

);


View solution in original post

2 REPLIES 2
ms
Super User (Alumni) ms
Super User (Alumni)

Dunnett’s tests in repeated measures

You can use the Fit Y by X platform. Set measured variable as Y, sampling (1-8, Nominal or Ordinal) as X and Subject as Block. Then under the red triangle pick "Campare Means --> With Control, Dunnett's". You will be asked to specify which level that is treated as control.

Script example:

dt = Open( "$ENGLISH_SAMPLE_DATA/Blood Pressure.jmp" );

dt << Oneway(

          Y( :BP 8M ),

          X( :Dose ),

          Block( :Subject ),

          With Control( 1, {"Control"} ),

          Comparison Circles( 1 )

);


jaykim
Level I

Dunnett’s tests in repeated measures

Thanks a lot!!

Recommended Articles