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
Alma1
Level III

pooled /unpooled t test

Hi 

What is the appropriate two sample t procedure for the summary below milking periods of cow breeds pooled/unpooled (Welch) using R?

Frisian cow          Xbar=342.5           S1=10.2                 n1=126

Jersey cow         Xbar =348.6           S2=12.2                 n2=39

Construct 95% confidence interval for µ1-µ2

Give proper interpretation of the interval

Thanks

10 REPLIES 10
Georg
Level VII

Re: pooled /unpooled t test

@Alma1  have a look at

help -> sample data -> Calculators -> Hypothesis test for two means

and follow the workflow (or excecute the script below).

 

For learning Purpose I would also recommend to construct a data table from the summary statistics and perform the t-Test from menu Analysis -> Fit y by x, and Read the explanations JMP gives.

 

 

Names default to here(1);
open("$SAMPLE_SCRIPTS\Calculators\TestTwoSampleMeans.jsl");
Georg

Recommended Articles