Question
R Copy code # Create contingency tables for Never Smokers and Current Smokers Groups never_smokers
R
Copy code
# Create contingency tables for Never Smokers and Current Smokers Groups never_smokers <- matrix(c(150, 71, 360348, 117804), nrow = 2, byrow = TRUE) colnames(never_smokers) <- c("# Cases", "Person-Years") rownames(never_smokers) <- c("Female", "Male") current_smokers <- matrix(c(38, 10, 147476, 17706), nrow = 2, byrow = TRUE) colnames(current_smokers) <- c("# Cases", "Person-Years") rownames(current_smokers) <- c("Female", "Male") #Suppose we want to study the effect of cigarette smoking on the incidence rate of primary open-angle glaucoma. The following data were obtained from the Nurses' Health Study (NHS) over the time period 1980-1996 and the Health Professionals' Follow-Up Study (a study of male health professionals) over the time period 1986-1996. ## Part c (4 points) If appropriate, estimate the common incidence rate ratio relating current cigarette smoking to the incidence of open-angle glaucoma. Support your estimate with a 95% confidence interval. Write a sentence or two interpreting these results in the context of the problem.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started