<?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: Prediction Interval in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960941#M48133</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;raises an important difference. When I want a prediction interval, I am lucky enough to have the SAS/QC module licensed so that I can use PROC CAPABILITY.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
    <pubDate>Wed, 05 Mar 2025 13:57:59 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2025-03-05T13:57:59Z</dc:date>
    <item>
      <title>Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960566#M48097</link>
      <description>&lt;P&gt;I have a sample size of 18 a variance of 6.4512 and a mean of 13.55.&amp;nbsp; I have been able to find the required CI's but I cannot figure out how to calculate a 95% prediction interval for what the mean would be of an additional sample of 10.&amp;nbsp;&amp;nbsp;&amp;nbsp; I have examples with data sets and I have checked online and found information with data sets.&amp;nbsp; But this is all I have to work with.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 01:01:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960566#M48097</guid>
      <dc:creator>KB131619</dc:creator>
      <dc:date>2025-03-01T01:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960569#M48098</link>
      <description>&lt;P&gt;Also for the same problem how would I find the 95% CI for the population variance and also for the standard deviation?&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 01:04:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960569#M48098</guid>
      <dc:creator>KB131619</dc:creator>
      <dc:date>2025-03-01T01:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960577#M48099</link>
      <description>&lt;P&gt;This sounds like homework?&amp;nbsp; Not sure this is really a SAS question so much as a basic stats question, but standard deviation is the square root of the variance.&amp;nbsp; And standard error (SE) is the standard deviation divided by the square root of the sample size.&amp;nbsp; Your 95% prediction/confidence interval (CI), in this case, is just going to be evenly distributed on either side of your mean, with the lower limit being:&lt;/P&gt;
&lt;P&gt;mean - 1.96 * SE&lt;/P&gt;
&lt;P&gt;...and the upper limit being:&lt;/P&gt;
&lt;P&gt;mean + 1.96 * SE&lt;/P&gt;
&lt;P&gt;If your current variance is, say, 16, and your population size is 18, then your SE would be 4/sqrt(18).&amp;nbsp; So.... if you increased your sample size by 10, then what is your SE?&amp;nbsp; And how does that affect the upper and lower bounds of the CI?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe population standard deviation has a very slightly different formula than regular SD.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ChatGPT is your friend.&amp;nbsp; Better yet, find a tiny fake dataset and calculate variance, SD, SE and CI by hand - really.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 03:37:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960577#M48099</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-03-01T03:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960586#M48102</link>
      <description>&lt;P&gt;If I understood your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=sashelp.class;
model weight=;
output out=want p=pred lcl=pred_lcl ucl=pred_ucl lclm=mean_lcl uclm=mean_uclm;
quit;

proc print;run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_1-1740814894746.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105057i5A2B7E9DAFE4B913/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_1-1740814894746.png" alt="Ksharp_1-1740814894746.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 07:41:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960586#M48102</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-03-01T07:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960600#M48105</link>
      <description>I know how to do all the calculations by hand. &amp;nbsp;My issue is putting it into SAS. &amp;nbsp;But thank you.&amp;nbsp;&lt;BR /&gt;</description>
      <pubDate>Sat, 01 Mar 2025 10:35:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960600#M48105</guid>
      <dc:creator>KB131619</dc:creator>
      <dc:date>2025-03-01T10:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960608#M48106</link>
      <description>&lt;P&gt;Yes, so this is the problem.&amp;nbsp; I actually know how to do the bottom portion here.&amp;nbsp; My issue is instead of the data set how do I enter the top portion when I have no data set?&amp;nbsp;&amp;nbsp; I also know how to do this by hand.&amp;nbsp; But every example I find for help only shows it with data sets.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 10:40:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960608#M48106</guid>
      <dc:creator>KB131619</dc:creator>
      <dc:date>2025-03-01T10:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960640#M48111</link>
      <description>&lt;P&gt;I don't understand.&lt;/P&gt;
&lt;P&gt;1) you can bring data in by writing a simple data. Like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input weight;
cards;
112
110
223
456
321
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;2)you save your data in a Excel file and import it by :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile='c:\temp\have.xlsx' out=have dbms=xlsx replace;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;3)you save your data in a TEXT file and impot it by:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile 'c:\temp\hav.txt' ;
input weight;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 02 Mar 2025 01:28:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960640#M48111</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-03-02T01:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960642#M48112</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc univariate data=sashelp.class cibasic;
var Height;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1740879309884.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105079i9E16B8F7C3219B89/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1740879309884.png" alt="Ksharp_0-1740879309884.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Mar 2025 01:35:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960642#M48112</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-03-02T01:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960671#M48113</link>
      <description>&lt;P&gt;Just an add-on to the post of&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;:&lt;/P&gt;
&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;&lt;SPAN&gt;‘confidence limits’ (confidence interval) = confidence limits on the &lt;STRONG&gt;*mean*&lt;/STRONG&gt; prediction&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;‘prediction limits’ (prediction interval) = confidence limits on the &lt;STRONG&gt;*individual*&lt;/STRONG&gt; prediction&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;BR, Koen&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Mar 2025 15:24:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960671#M48113</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2025-03-02T15:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960941#M48133</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;raises an important difference. When I want a prediction interval, I am lucky enough to have the SAS/QC module licensed so that I can use PROC CAPABILITY.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 13:57:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960941#M48133</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2025-03-05T13:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960943#M48134</link>
      <description>&lt;P&gt;PROC CAPABILITY also allows for computing &lt;STRONG&gt;tolerance intervals&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, there is a&amp;nbsp;distinction between confidence intervals, prediction intervals and tolerance intervals.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 14:22:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960943#M48134</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2025-03-05T14:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Prediction Interval</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960946#M48135</link>
      <description>&lt;P&gt;And for prediction intervals there are two varieties - the first is an approximate interval containing&amp;nbsp;&lt;U&gt;all&lt;/U&gt; of&amp;nbsp;&lt;EM&gt;k&lt;/EM&gt; future observations, the second is an interval containing the&amp;nbsp;&lt;U&gt;mean&lt;/U&gt;&amp;nbsp;of&amp;nbsp;&lt;EM&gt;k&lt;/EM&gt; future observations. Be sure to check the section for Methods for Computing Statistical Intervals to note the difference between the two methods.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 14:34:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Prediction-Interval/m-p/960946#M48135</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2025-03-05T14:34:08Z</dc:date>
    </item>
  </channel>
</rss>

