Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Mathematical Applications for the Management Life and Social Sciences

Authors: Ronald J. Harshbarger, James J. Reynolds

11th edition

9781337032247, 9781305465183, 1305108043, 1337032247, 1305465180, 978-1305108042

More Books

Students also viewed these Mathematics questions