When using proc orthoreg to build polynomials, I can create the models etc fine and the charts plot 95% Confidence and prediction intervals. I'm looking for a way to have details printed and the parameters used to construct them but can't find the correct syntax.
Please post the PROC ORTHOREG code, the output, and explain what you wish to see.
I have the same problem as him. Take the following as an example.
data polynomial; do i=1 to 101; x=(i-1)/(101-1); y=10**(9/2); do j=0 to 8; y=y*(x-j/8); end; output; end; run; ods graphics on; proc orthoreg data=polynomial; effect xMod = polynomial(x / degree=6); model y = xMod; effectplot fit / obs; store OStore; run; ods graphics off;
SAS produced the 95CI interval. I want to know the upper and lower limits value of each data point. What syntax should I use?
I checked the SAS manual, and the Proc orthoreg statement only has the outset option, which does not seem to output the upper and lower limits value of each data point.
https://support.sas.com/documentation/onlinedoc/stat/141/orthoreg.pdf
see p6699
Please reply, thank you.
try adding the statement
ods output FitPlot=Fitplot;
to the procedure. It will create a dataset called FitPlot with each point and interval values.
Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.
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.