Reference no: EM132225657
Biostatistics Assignment-
Consider the data given in problem 6 of KKNM Chapter 5. Use SAS to perform the regression predicting ATST from AGE. For this, you can use something like the SAS code given below. The dataset is attached (ch05q06). The dataset is in SAS format so you can use LIBNAME statement to read the data directly. Depending on where you save this dataset, you will need to modify the file location on the LIBNAME statement below.
OPTIONS NOCENTER;
LIBNAME aa 'C:\Subhash\UIC BSTT 401 Spring 2019\Data\datasets\SAS\CH05';
PROC MEANS DATA = aa.CH05Q06;
RUN;
PROC REG data = aa.ch05q06;
MODEL Atst = Age;
RUN;
PROC PLOT data = aa.ch05q06;
PLOT Atst * Age;
RUN;
Based on your analysis, answer the following questions.
1. For the linear regression model, what are the fitted regression coefficients and their associated standard errors?
2. What is the regression variance, or more symbolically what is S2Y|X?
3. Use the computer to plot the observed data, and then use your hand and a pencil (or pen for those confident people out there) to draw the fitted regression line.
4. What is the value of the test statistic for testing whether the slope is 0? Please report two test statistics for this.
Textbook - Applied Regression Analysis and Other Multivariate Methods (4th/5th edition) Authors: Kleinbaum, Kupper, Nizam, & Muller.
Attachment:- Assignment Files.rar