New research suggests that the occurrence of celiac disease in a subject depends on the subject’s gender and whether the subject already has another autoimmune disorder (such as Hashimoto disease and/or Type I Diabetes). Researchers collected information from 860 patients complaining of gastrointestinal discomfort. a) Conduct the appropriate hypothesis test at a 5% significance level to test whether adding information about Hashimoto disease and Type I Diabetes as predictors together significantly improves the initial model for occurrence of Celiac disease based on gender. Provide null and alternative hypotheses, test statistic, df, test result and your interpretation. b) Based on the data input into SAS, compute the observed odds of having Celiac disease for a male who does not have Hashimoto disease nor Type I Diabetes. No need for interpretation. c) Based on the second model, compute the estimated odds of having Celiac disease for a male who does not have Hashimoto disease nor Type I Diabetes. No need for interpretation. d) Based on the crude model, compute the Wald chi-squared test statistic for testing whether gender is associated with having Celiac disease. No need to perform the actual hypothesis test. e) Compute the 95% confidence interval for the crude OR of Celiac disease for females compared to males. No need for interpretation. (z0.975 = 1.96)

MATLAB: An Introduction with Applications
6th Edition
ISBN:9781119256830
Author:Amos Gilat
Publisher:Amos Gilat
Chapter1: Starting With Matlab
Section: Chapter Questions
Problem 1P
icon
Related questions
Question
New research suggests that the occurrence of celiac disease in a subject depends on the subject’s gender and whether the subject already has another autoimmune disorder (such as Hashimoto disease and/or Type I Diabetes). Researchers collected information from 860 patients complaining of gastrointestinal discomfort. a) Conduct the appropriate hypothesis test at a 5% significance level to test whether adding information about Hashimoto disease and Type I Diabetes as predictors together significantly improves the initial model for occurrence of Celiac disease based on gender. Provide null and alternative hypotheses, test statistic, df, test result and your interpretation. b) Based on the data input into SAS, compute the observed odds of having Celiac disease for a male who does not have Hashimoto disease nor Type I Diabetes. No need for interpretation. c) Based on the second model, compute the estimated odds of having Celiac disease for a male who does not have Hashimoto disease nor Type I Diabetes. No need for interpretation. d) Based on the crude model, compute the Wald chi-squared test statistic for testing whether gender is associated with having Celiac disease. No need to perform the actual hypothesis test. e) Compute the 95% confidence interval for the crude OR of Celiac disease for females compared to males. No need for interpretation. (z0.975 = 1.96)
data celiac;
input gender
$ hashimoto $
tldiabetes $ positive total;
cards;
female yes yes 27 124
female yes no 21 133
female no yes 22 117
female no no 16 109
male yes yes 14 95
male yes no 14 87
male no yes 9 97
male no no 11 99
;
run;
title "Logistic model with gender";
proc logistic data-celiac;
class gender (ref='male') /
param=ref;
model positive/total = gender;
run;
title "Logistic model with gender
adjusted for presence of autoimune
(tldiabetes and
hashimoto) diseases";
proc logistic data-celiac;
class gender (ref='male') /
param=ref;
class hashimoto (ref='no') /
param=ref;
class tldiabetes (ref='no') /
param=ref;
model positive/total
hashimoto tldiabetes;
run;
=
gender
Transcribed Image Text:data celiac; input gender $ hashimoto $ tldiabetes $ positive total; cards; female yes yes 27 124 female yes no 21 133 female no yes 22 117 female no no 16 109 male yes yes 14 95 male yes no 14 87 male no yes 9 97 male no no 11 99 ; run; title "Logistic model with gender"; proc logistic data-celiac; class gender (ref='male') / param=ref; model positive/total = gender; run; title "Logistic model with gender adjusted for presence of autoimune (tldiabetes and hashimoto) diseases"; proc logistic data-celiac; class gender (ref='male') / param=ref; class hashimoto (ref='no') / param=ref; class tldiabetes (ref='no') / param=ref; model positive/total hashimoto tldiabetes; run; = gender
Criterion Intercept Only
Logistic model with gender
Model Fit Statistics
AIC 746.519
SC 751.277
-2 Log L 744.519
Effect
gender 1
Effect
Type 3 Analysis of Effects
Wald
DF
Chi-Square
4.1718
Intercept and Covariates
Log Likelihood Full Log Likelihood
744.247
44.560
753.763
54.076
740.247
40.560
Analysis of Maximum Likelihood Estimates
Standard Wald
Parameter
DF Estimate
Error Chi-Square
Intercept
1 -1.9278
0.1545 155.7443 <.0001
0.0411
gender female1 0.3982
10.1950 4.1718
Odds Ratio Estimates
gender female vs male 1.489
AIC 746.519
SC 751.277
-2 Log L 744.519
Criterion Intercept Only
95% Wald
Point Estimate Confidence Limits
1.016 2.182
Logistic model with gender adjusted for presence of
autoimune (t1 diabetes andhashimoto) diseases
Pr>ChiSq
0.0411
Model Fit Statistics
Type 3 Analysis of Effects
Wald
Chi-Square"
Intercept and Covariates
Log Likelihood Full Log Likelihood
745.611
45.924
764.644
64.957
737.611
37.924
Effect DF
gender 1 3.9519 0.0468
hashimoto 1 1.8354
0.1755
t1diabetes 1 0.8168
0.3661
Pr>ChiSq
Parameter
Intercept
gender female 1 0.3885
Analysis of Maximum Likelihood Estimates
DF Estimate
Standard Wald
Error Chi-Square
-2.1479 0.2118
Effect
gender female vs male 1.475
hashimoto yes vs no
1.294
t1diabetes yes vs no 1.186
0.1954 3.9519
hashimoto yes 1 0.2577 0.1902 1.8354
t1diabetes yes 1 0.1710 0.1892 0.8168
Odds Ratio Estimates
Pr>ChiSq
Point Estimate
102.8150 <.0001
0.0468
0.1755
0.3661
Pr>ChiSq
1.005 2.163
0.891 1.878
0.819 1.719
95% Wald
Confidence Limits
Transcribed Image Text:Criterion Intercept Only Logistic model with gender Model Fit Statistics AIC 746.519 SC 751.277 -2 Log L 744.519 Effect gender 1 Effect Type 3 Analysis of Effects Wald DF Chi-Square 4.1718 Intercept and Covariates Log Likelihood Full Log Likelihood 744.247 44.560 753.763 54.076 740.247 40.560 Analysis of Maximum Likelihood Estimates Standard Wald Parameter DF Estimate Error Chi-Square Intercept 1 -1.9278 0.1545 155.7443 <.0001 0.0411 gender female1 0.3982 10.1950 4.1718 Odds Ratio Estimates gender female vs male 1.489 AIC 746.519 SC 751.277 -2 Log L 744.519 Criterion Intercept Only 95% Wald Point Estimate Confidence Limits 1.016 2.182 Logistic model with gender adjusted for presence of autoimune (t1 diabetes andhashimoto) diseases Pr>ChiSq 0.0411 Model Fit Statistics Type 3 Analysis of Effects Wald Chi-Square" Intercept and Covariates Log Likelihood Full Log Likelihood 745.611 45.924 764.644 64.957 737.611 37.924 Effect DF gender 1 3.9519 0.0468 hashimoto 1 1.8354 0.1755 t1diabetes 1 0.8168 0.3661 Pr>ChiSq Parameter Intercept gender female 1 0.3885 Analysis of Maximum Likelihood Estimates DF Estimate Standard Wald Error Chi-Square -2.1479 0.2118 Effect gender female vs male 1.475 hashimoto yes vs no 1.294 t1diabetes yes vs no 1.186 0.1954 3.9519 hashimoto yes 1 0.2577 0.1902 1.8354 t1diabetes yes 1 0.1710 0.1892 0.8168 Odds Ratio Estimates Pr>ChiSq Point Estimate 102.8150 <.0001 0.0468 0.1755 0.3661 Pr>ChiSq 1.005 2.163 0.891 1.878 0.819 1.719 95% Wald Confidence Limits
Expert Solution
steps

Step by step

Solved in 6 steps with 7 images

Blurred answer
Similar questions
Recommended textbooks for you
MATLAB: An Introduction with Applications
MATLAB: An Introduction with Applications
Statistics
ISBN:
9781119256830
Author:
Amos Gilat
Publisher:
John Wiley & Sons Inc
Probability and Statistics for Engineering and th…
Probability and Statistics for Engineering and th…
Statistics
ISBN:
9781305251809
Author:
Jay L. Devore
Publisher:
Cengage Learning
Statistics for The Behavioral Sciences (MindTap C…
Statistics for The Behavioral Sciences (MindTap C…
Statistics
ISBN:
9781305504912
Author:
Frederick J Gravetter, Larry B. Wallnau
Publisher:
Cengage Learning
Elementary Statistics: Picturing the World (7th E…
Elementary Statistics: Picturing the World (7th E…
Statistics
ISBN:
9780134683416
Author:
Ron Larson, Betsy Farber
Publisher:
PEARSON
The Basic Practice of Statistics
The Basic Practice of Statistics
Statistics
ISBN:
9781319042578
Author:
David S. Moore, William I. Notz, Michael A. Fligner
Publisher:
W. H. Freeman
Introduction to the Practice of Statistics
Introduction to the Practice of Statistics
Statistics
ISBN:
9781319013387
Author:
David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:
W. H. Freeman