Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Confidence Bands in PROC MIXED

Status
Not open for further replies.

jhancardiac

Programmer
May 19, 2009
1
NZ
I am using PROC MIXED to estimate a 2nd order polynomial parameters (3 parameters), fitted to Heat-Stress at 2 Ca groups, each contains 10 Muscle subjects.

Proc mixed data=work.sas method=ML;

class Ca Muscle;
model Heat = Ca Ca*Stress Ca*Stress*Stress / noint solution CL COVB;
random intercept / subject=Muscle G CL group=Ca;
repeated / subject=Muscle group=Ca;

run;


The PROC MIXED outputs only the 3 parameters of the regression line, and corresponding parameter confidence intervals.

Any idea on how to get the parameters that describes the 95% confidence bands?

Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top