<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Proc Orthoreg Confidence/Prediction intervals in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/767168#M37500</link>
    <description>&lt;P&gt;I have the same problem as him. Take the following as an example.&lt;/P&gt;&lt;PRE&gt;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;&lt;/PRE&gt;&lt;P&gt;SAS produced the 95CI interval. I want to know the upper and lower limits value of each data point. What syntax should I use?&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/documentation/onlinedoc/stat/141/orthoreg.pdf" target="_blank"&gt;https://support.sas.com/documentation/onlinedoc/stat/141/orthoreg.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;see p6699&lt;/P&gt;&lt;P&gt;Please reply, thank you.&lt;/P&gt;</description>
    <pubDate>Sat, 11 Sep 2021 02:36:39 GMT</pubDate>
    <dc:creator>Cingchih</dc:creator>
    <dc:date>2021-09-11T02:36:39Z</dc:date>
    <item>
      <title>Proc Orthoreg Confidence/Prediction intervals</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/536690#M27008</link>
      <description>&lt;P&gt;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.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Feb 2019 10:41:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/536690#M27008</guid>
      <dc:creator>JR4012</dc:creator>
      <dc:date>2019-02-19T10:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Orthoreg Confidence/Prediction intervals</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/538278#M27053</link>
      <description>&lt;P&gt;Please post the PROC ORTHOREG code, the output, and explain what you wish to see.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2019 14:35:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/538278#M27053</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-02-25T14:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Orthoreg Confidence/Prediction intervals</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/767168#M37500</link>
      <description>&lt;P&gt;I have the same problem as him. Take the following as an example.&lt;/P&gt;&lt;PRE&gt;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;&lt;/PRE&gt;&lt;P&gt;SAS produced the 95CI interval. I want to know the upper and lower limits value of each data point. What syntax should I use?&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/documentation/onlinedoc/stat/141/orthoreg.pdf" target="_blank"&gt;https://support.sas.com/documentation/onlinedoc/stat/141/orthoreg.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;see p6699&lt;/P&gt;&lt;P&gt;Please reply, thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Sep 2021 02:36:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/767168#M37500</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2021-09-11T02:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Orthoreg Confidence/Prediction intervals</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/767181#M37501</link>
      <description>&lt;P&gt;try adding the statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods output FitPlot=Fitplot;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to the procedure. It will create a dataset called FitPlot with each point and interval values.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Sep 2021 04:41:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/767181#M37501</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2021-09-11T04:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Orthoreg Confidence/Prediction intervals</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/767212#M37504</link>
      <description>Really solved it, thank you for your valuable grammar.</description>
      <pubDate>Sat, 11 Sep 2021 16:14:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Orthoreg-Confidence-Prediction-intervals/m-p/767212#M37504</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2021-09-11T16:14:01Z</dc:date>
    </item>
  </channel>
</rss>

