Was given a dataset called "cancer" and told to make a SLR model formula and define the variables. I attached the dataset and used the following code, however, my professor said that my Bo was supposed to be 11 times greater.
My Code:
proc contents data=cancer.cancer;run;
proc reg data= cancer.cancer;
model exposure= mortality/ clm cli;
ID mortality;
run;
My answer was Y=-10.008 +0.093x where Bo=-10.008 and B1=0.0364
Show us the output produced by PROC REG
Also
Shouldn't your PROC REG have
model mortality = exposure/ clm cli;
where exposure predicts mortality (instead of the way you wrote it, which mortality predicts exposure)?
Show us the output produced by PROC REG
Also
Shouldn't your PROC REG have
model mortality = exposure/ clm cli;
where exposure predicts mortality (instead of the way you wrote it, which mortality predicts exposure)?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.