SlideShare une entreprise Scribd logo
1  sur  30
Estimating Sample Size  through Simulations  Wuchen Zhao Department of Preventive Medicine University of Southern California Arthur Li City of Hope National Cancer Center
Background ,[object Object],[object Object],[object Object]
Background ,[object Object],[object Object]
PROC POWER ,[object Object],[object Object],[object Object],[object Object]
PROC POWER ,[object Object],[object Object],[object Object],[object Object],[object Object]
PROC POWER proc   power ; twosamplemeans   test =diff groupmeans  =  250  |  265 stddev  =  50 alpha  =  0.05 sides  =  1 npergroup  =  . power  =  0.8 ; run ;
PROC POWER The POWER Procedure Two-sample t Test for Mean Difference Fixed Scenario Elements Distribution  Normal Method  Exact Number of Sides  1 Alpha  0.05 Group 1 Mean  250 Group 2 Mean  265 Standard Deviation  50 Nominal Power  0.8 Null Difference  0 Computed N Per Group Actual  N Per Power  Group 0.802  139
Calculating Sample Size Through Simulation ,[object Object],Q e :  proportion of subjects allocated to drug group  Q c  = 1 – Q e d =  μ 1  –  μ 2
Calculating Sample Size Through Simulation ,[object Object]
Calculating Sample Size Through Simulation ,[object Object],Let
Calculating Sample Size Through Simulation ,[object Object],[object Object],[object Object],[object Object],[object Object]
Calculating Sample Size Through Simulation ,[object Object],%let  sim_n = 2000000; %let  mu_drug = 250; %let  mu_placebo = 265; %let  sigma = 50; data  sim (drop = i seed); retain  seed  1 ; length  group $  7. ; do  i =  1   to  &sim_n; if  ranuni(seed) <  0.5   then   do ; group =  'drug' ; weight = &mu_drug + &sigma * rannor(seed); end ; else   do ; group =  'placebo' ; weight = &mu_placebo + &sigma * rannor(seed); end ; output ; end ; run ;
Calculating Sample Size Through Simulation ,[object Object],title   &quot;The first 5 observations of simulated data&quot; ; proc   print   data  = sim ( obs  =  5 )  noobs ; run ; The first 5 observations of simulated data  group  weight drug  240.039 drug  269.829 placebo  318.472 drug  218.788 placebo  376.986
Calculating Sample Size Through Simulation ,[object Object],proc   ttest   data  = sim; class  group; var  weight; ods   output  ttests = stats; run ; title   'The T-test Result' ; proc   print   data  = stats  noobs ; run ; The T-test Result  Variable  Method  Variances  tValue  DF  Probt weightloss  Pooled  Equal  -211.37  2E6  <.0001 weightloss  Satterthwaite  Unequal  -211.37  2E6  <.0001
Calculating Sample Size Through Simulation ,[object Object],The T-test Result  Variable  Method  Variances  tValue  DF  Probt weightloss  Pooled  Equal  -211.37  2E6  <.0001 weightloss  Satterthwaite  Unequal  -211.37  2E6  <.0001 Average contribution of each person to the total test statistics
Calculating Sample Size Through Simulation ,[object Object]
Calculating Sample Size Through Simulation ,[object Object],%let  alpha = 0.05; %let  power = 0.80; %let  sides = 1; data  size_n(keep = alpha power  z_alpha z_beta tvalue expected_t n); set  stats; if  method =  'Pooled' ; z_alpha = probit( 1  - &alpha/&sides); z_beta = probit(&power); expected_t = abs(tvalue)/sqrt(&sim_n); n=((z_alpha+z_beta)** 2 /expected_t** 2 )/ 2 ; run ;
Calculating Sample Size Through Simulation ,[object Object],title   'The required sample size for each group' ; proc   print   data =size_n  noobs ; run ; The required sample size for each group  expected_ tValue  z_alpha  z_beta  t  n -211.37  1.64485  0.84162  0.14946  138.378
Calculating Sample Size For Interaction Through Simulation ,[object Object],[object Object],[object Object]
Calculating Sample Size For Interaction Through Simulation ,[object Object],[object Object],[object Object],Drug Group: Placebo Group:
Calculating Sample Size For Interaction Through Simulation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Calculating Sample Size For Interaction Through Simulation ,[object Object],[object Object],%let  sim_n=1000000; %let  p_drug=0.3; %let  mean_cal=2500; %let  sd_cal=1000; %let  alpha=10; %let  beta1=5; %let  beta2=-0.004; %let  beta3=0.0025; %let  sd_error=5;
Calculating Sample Size For Interaction Through Simulation ,[object Object],data  sim (drop = seed i); retain  seed  1 ; do  i= 1   to  &sim_n; if  ranuni(seed) < &p_drug  then  drug= 1 ; else  drug= 0 ; calorie = &mean_cal + &sd_cal * rannor(seed); weightloss = &alpha + &beta1*drug + &beta2* calorie +    &beta3*drug*calorie +  &sd_error*rannor(seed); output ; end ; run ;
Calculating Sample Size For Interaction Through Simulation ,[object Object],title   'The frist 5 observations of the simulated data' ; proc   print   data =sim ( obs = 5 )  noobs ; run ; The frist 5 observations of the simulated data  drug  calorie  weightloss 1  2300.78  18.7863 0  1416.68  15.5247 0  3187.84  8.4472 1  1905.82  12.3007 0  1258.70  -2.8413
Calculating Sample Size Through Simulation ,[object Object],proc   glm   data  = sim; model  weightloss = drug calorie drug*calorie/ solution ; ods   output  parameterestimates=pe; quit ; title   'The result from the linear regression' ; proc   print   data =pe; run ; The result from the linear regression    Obs  Dependent  Parameter  Estimate  StdErr  tValue  Probt   1  weightloss  Intercept  9.999851985  0.01605913  622.69  <.0001 2  weightloss  drug  5.032458567  0.02931489  171.67  <.0001 3  weightloss  calorie  -0.003996279  0.00000597  -669.75  <.0001 4  weightloss  drug*calorie  0.002481769  0.00001089  227.91  <.0001
Calculating Sample Size Through Simulation ,[object Object],The result from the linear regression    Obs  Dependent  Parameter  Estimate  StdErr  tValue  Probt   1  weightloss  Intercept  9.999851985  0.01605913  622.69  <.0001 2  weightloss  drug  5.032458567  0.02931489  171.67  <.0001 3  weightloss  calorie  -0.003996279  0.00000597  -669.75  <.0001 4  weightloss  drug*calorie  0.002481769  0.00001089  227.91  <.0001
Calculating Sample Size Through Simulation ,[object Object],%let  alpha=0.05; %let  power=0.80; %let  sides=2; data  size_n(keep=z_alpha z_beta tvalue expected_t n); set  pe; if  parameter= 'drug*calorie' ; z_alpha = probit( 1  - &alpha/&sides); z_beta = probit(&power); expected_t = abs(tvalue)/sqrt(&sim_n); n = (z_alpha + z_beta)** 2 /expected_t** 2 ; run ;
Calculating Sample Size Through Simulation ,[object Object],title   'The Sample Size for Testing the Interaction' ; proc   print   data =size_n  noobs ; run ; The Sample Size for Testing the Interaction  expected_ tValue  z_alpha  z_beta  t  n 227.91  1.95996  0.84162  0.22791  151.112 ,[object Object]
Conclusion ,[object Object],[object Object],[object Object],[object Object],[object Object]
Conclusion ,[object Object],[object Object]

Contenu connexe

Tendances

Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
Tony Nguyen
 
Normal Distribution Presentation
Normal Distribution PresentationNormal Distribution Presentation
Normal Distribution Presentation
sankarshanjoshi
 
Variable Selection Methods
Variable Selection MethodsVariable Selection Methods
Variable Selection Methods
joycemi_la
 
Simple Linier Regression
Simple Linier RegressionSimple Linier Regression
Simple Linier Regression
dessybudiyanti
 

Tendances (20)

Introduction to Principle Component Analysis
Introduction to Principle Component AnalysisIntroduction to Principle Component Analysis
Introduction to Principle Component Analysis
 
Anova (1)
Anova (1)Anova (1)
Anova (1)
 
Anova (Analysis of variation)
Anova (Analysis of variation)Anova (Analysis of variation)
Anova (Analysis of variation)
 
Multiple Linear Regression
Multiple Linear Regression Multiple Linear Regression
Multiple Linear Regression
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
 
Data analysis with spss anova
Data analysis with spss anovaData analysis with spss anova
Data analysis with spss anova
 
Mantel Haenszel methods in epidemiology (Stratification)
Mantel Haenszel methods in epidemiology (Stratification) Mantel Haenszel methods in epidemiology (Stratification)
Mantel Haenszel methods in epidemiology (Stratification)
 
Regression and Co-Relation
Regression and Co-RelationRegression and Co-Relation
Regression and Co-Relation
 
Doe13 factorial3k blocking
Doe13 factorial3k blockingDoe13 factorial3k blocking
Doe13 factorial3k blocking
 
Cost effectiveness analysis
Cost effectiveness analysisCost effectiveness analysis
Cost effectiveness analysis
 
Normal Distribution Presentation
Normal Distribution PresentationNormal Distribution Presentation
Normal Distribution Presentation
 
Variable Selection Methods
Variable Selection MethodsVariable Selection Methods
Variable Selection Methods
 
Session 7 data analysis
Session 7 data analysisSession 7 data analysis
Session 7 data analysis
 
5.5 graph mining
5.5 graph mining5.5 graph mining
5.5 graph mining
 
Multiple regression with interaction term 2018
Multiple regression with interaction term 2018Multiple regression with interaction term 2018
Multiple regression with interaction term 2018
 
6. R data structures
6. R data structures6. R data structures
6. R data structures
 
What is Binary Logistic Regression Classification and How is it Used in Analy...
What is Binary Logistic Regression Classification and How is it Used in Analy...What is Binary Logistic Regression Classification and How is it Used in Analy...
What is Binary Logistic Regression Classification and How is it Used in Analy...
 
Cluster analysis
Cluster analysisCluster analysis
Cluster analysis
 
Simple Linier Regression
Simple Linier RegressionSimple Linier Regression
Simple Linier Regression
 
Exploratory data analysis
Exploratory data analysis Exploratory data analysis
Exploratory data analysis
 

En vedette

Two Sample Tests
Two Sample TestsTwo Sample Tests
Two Sample Tests
sanketd1983
 
Sample size
Sample sizeSample size
Sample size
zubis
 
Power Analysis and Sample Size Determination
Power Analysis and Sample Size DeterminationPower Analysis and Sample Size Determination
Power Analysis and Sample Size Determination
Ajay Dhamija
 

En vedette (20)

CORE: May the “Power” (Statistical) - Be with You!
CORE: May the “Power” (Statistical) - Be with You!CORE: May the “Power” (Statistical) - Be with You!
CORE: May the “Power” (Statistical) - Be with You!
 
Two Sample Tests
Two Sample TestsTwo Sample Tests
Two Sample Tests
 
Sample size
Sample sizeSample size
Sample size
 
Determining the Sample Size
Determining the Sample SizeDetermining the Sample Size
Determining the Sample Size
 
Power Analysis and Sample Size Determination
Power Analysis and Sample Size DeterminationPower Analysis and Sample Size Determination
Power Analysis and Sample Size Determination
 
Two sample t-test
Two sample t-testTwo sample t-test
Two sample t-test
 
HFS3283 paired t tes-t and anova
HFS3283 paired t tes-t and anovaHFS3283 paired t tes-t and anova
HFS3283 paired t tes-t and anova
 
Sampling Design in Applied Marketing Research
Sampling Design in Applied Marketing ResearchSampling Design in Applied Marketing Research
Sampling Design in Applied Marketing Research
 
What is a paired samples t test
What is a paired samples t testWhat is a paired samples t test
What is a paired samples t test
 
Chapter8
Chapter8Chapter8
Chapter8
 
Sampling and Inference_Political_Science
Sampling and Inference_Political_ScienceSampling and Inference_Political_Science
Sampling and Inference_Political_Science
 
1.Why do we need to calculate samplesize?
1.Why do we need to calculate samplesize?1.Why do we need to calculate samplesize?
1.Why do we need to calculate samplesize?
 
3. Calculate samplesize for prevalence studies
3. Calculate samplesize for prevalence studies3. Calculate samplesize for prevalence studies
3. Calculate samplesize for prevalence studies
 
Sample size calculation
Sample size calculationSample size calculation
Sample size calculation
 
2. Tools to calculate samplesize
2. Tools to calculate samplesize2. Tools to calculate samplesize
2. Tools to calculate samplesize
 
Sample size calculation
Sample  size calculationSample  size calculation
Sample size calculation
 
Sample size calculation - a brief overview
Sample size calculation - a brief overviewSample size calculation - a brief overview
Sample size calculation - a brief overview
 
What is an independent samples-t test?
What is an independent samples-t test?What is an independent samples-t test?
What is an independent samples-t test?
 
Student's T-Test
Student's T-TestStudent's T-Test
Student's T-Test
 
Basic Statistical Concepts and Methods
Basic Statistical Concepts and MethodsBasic Statistical Concepts and Methods
Basic Statistical Concepts and Methods
 

Similaire à Estimating sample size through simulations

MLlectureMethod.ppt
MLlectureMethod.pptMLlectureMethod.ppt
MLlectureMethod.ppt
butest
 
MLlectureMethod.ppt
MLlectureMethod.pptMLlectureMethod.ppt
MLlectureMethod.ppt
butest
 
DataIDSalaryCompaMidpoint AgePerformance RatingServiceGenderRaiseD.docx
DataIDSalaryCompaMidpoint AgePerformance RatingServiceGenderRaiseD.docxDataIDSalaryCompaMidpoint AgePerformance RatingServiceGenderRaiseD.docx
DataIDSalaryCompaMidpoint AgePerformance RatingServiceGenderRaiseD.docx
theodorelove43763
 
A05 Continuous One Variable Stat Tests
A05 Continuous One Variable Stat TestsA05 Continuous One Variable Stat Tests
A05 Continuous One Variable Stat Tests
Leanleaders.org
 
A05 Continuous One Variable Stat Tests
A05 Continuous One Variable Stat TestsA05 Continuous One Variable Stat Tests
A05 Continuous One Variable Stat Tests
Leanleaders.org
 
20140602 statistical power - husnul and nur
20140602   statistical power - husnul and nur20140602   statistical power - husnul and nur
20140602 statistical power - husnul and nur
Muhammad Khuluq
 

Similaire à Estimating sample size through simulations (20)

MLlectureMethod.ppt
MLlectureMethod.pptMLlectureMethod.ppt
MLlectureMethod.ppt
 
MLlectureMethod.ppt
MLlectureMethod.pptMLlectureMethod.ppt
MLlectureMethod.ppt
 
Lab manual_statistik
Lab manual_statistikLab manual_statistik
Lab manual_statistik
 
Test of significance (t-test, proportion test, chi-square test)
Test of significance (t-test, proportion test, chi-square test)Test of significance (t-test, proportion test, chi-square test)
Test of significance (t-test, proportion test, chi-square test)
 
Diabetes data - model assessment using R
Diabetes data - model assessment using RDiabetes data - model assessment using R
Diabetes data - model assessment using R
 
WEKA:Credibility Evaluating Whats Been Learned
WEKA:Credibility Evaluating Whats Been LearnedWEKA:Credibility Evaluating Whats Been Learned
WEKA:Credibility Evaluating Whats Been Learned
 
WEKA: Credibility Evaluating Whats Been Learned
WEKA: Credibility Evaluating Whats Been LearnedWEKA: Credibility Evaluating Whats Been Learned
WEKA: Credibility Evaluating Whats Been Learned
 
Week 10 GEE Data Examples v2.pptx
Week 10 GEE Data Examples v2.pptxWeek 10 GEE Data Examples v2.pptx
Week 10 GEE Data Examples v2.pptx
 
Factorial Experiments
Factorial ExperimentsFactorial Experiments
Factorial Experiments
 
report
reportreport
report
 
DataIDSalaryCompaMidpoint AgePerformance RatingServiceGenderRaiseD.docx
DataIDSalaryCompaMidpoint AgePerformance RatingServiceGenderRaiseD.docxDataIDSalaryCompaMidpoint AgePerformance RatingServiceGenderRaiseD.docx
DataIDSalaryCompaMidpoint AgePerformance RatingServiceGenderRaiseD.docx
 
P Chart Tutorial
P Chart TutorialP Chart Tutorial
P Chart Tutorial
 
Statistics
StatisticsStatistics
Statistics
 
Testing a claim about a mean
Testing a claim about a mean  Testing a claim about a mean
Testing a claim about a mean
 
A05 Continuous One Variable Stat Tests
A05 Continuous One Variable Stat TestsA05 Continuous One Variable Stat Tests
A05 Continuous One Variable Stat Tests
 
A05 Continuous One Variable Stat Tests
A05 Continuous One Variable Stat TestsA05 Continuous One Variable Stat Tests
A05 Continuous One Variable Stat Tests
 
20140602 statistical power - husnul and nur
20140602   statistical power - husnul and nur20140602   statistical power - husnul and nur
20140602 statistical power - husnul and nur
 
Sample Size: A couple more hints to handle it right using SAS and R
Sample Size: A couple more hints to handle it right using SAS and RSample Size: A couple more hints to handle it right using SAS and R
Sample Size: A couple more hints to handle it right using SAS and R
 
A04 Sample Size
A04 Sample SizeA04 Sample Size
A04 Sample Size
 
A04 Sample Size
A04 Sample SizeA04 Sample Size
A04 Sample Size
 

Dernier

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
SanaAli374401
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 

Dernier (20)

Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 

Estimating sample size through simulations

  • 1. Estimating Sample Size through Simulations Wuchen Zhao Department of Preventive Medicine University of Southern California Arthur Li City of Hope National Cancer Center
  • 2.
  • 3.
  • 4.
  • 5.
  • 6. PROC POWER proc power ; twosamplemeans test =diff groupmeans = 250 | 265 stddev = 50 alpha = 0.05 sides = 1 npergroup = . power = 0.8 ; run ;
  • 7. PROC POWER The POWER Procedure Two-sample t Test for Mean Difference Fixed Scenario Elements Distribution Normal Method Exact Number of Sides 1 Alpha 0.05 Group 1 Mean 250 Group 2 Mean 265 Standard Deviation 50 Nominal Power 0.8 Null Difference 0 Computed N Per Group Actual N Per Power Group 0.802 139
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.