<?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 confidence intervals for mean spring enrollment when fall enrollment is 290 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/confidence-intervals-for-mean-spring-enrollment-when-fall/m-p/246945#M46258</link>
    <description>&lt;P&gt;I am woring in a data set and have to create a confidence interval for mean spring enrollment when fall enrollment is 290.&lt;/P&gt;&lt;P&gt;I dont understand how to go about doing this especially when the fall enrollment is never 290.&lt;/P&gt;&lt;P&gt;the data is as follows:&lt;/P&gt;&lt;P&gt;data problem2a;&lt;/P&gt;&lt;P&gt;input&lt;BR /&gt;Ayear Fall Spring;&lt;BR /&gt;if Ayear = 2003 then delete;&lt;BR /&gt;datalines;&lt;BR /&gt;2001 259 246&lt;BR /&gt;2002 301 206&lt;BR /&gt;2003 343 288&lt;BR /&gt;2004 307 215&lt;BR /&gt;2005 286 230&lt;BR /&gt;2006 273 247&lt;BR /&gt;2007 248 308&lt;BR /&gt;2008 292 271&lt;BR /&gt;2009 250 285&lt;BR /&gt;2010 278 286&lt;BR /&gt;2011 303 254&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=problem2a;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand how to do a basic confidence interval on the enitre thing but not how to specify it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is the code I used for a basic CI but I dont think it in doing the right thing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc reg data=problem2a;&lt;BR /&gt;model spring = fall /clm cli;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 29 Jan 2016 17:54:53 GMT</pubDate>
    <dc:creator>MadQuidd</dc:creator>
    <dc:date>2016-01-29T17:54:53Z</dc:date>
    <item>
      <title>confidence intervals for mean spring enrollment when fall enrollment is 290</title>
      <link>https://communities.sas.com/t5/SAS-Programming/confidence-intervals-for-mean-spring-enrollment-when-fall/m-p/246945#M46258</link>
      <description>&lt;P&gt;I am woring in a data set and have to create a confidence interval for mean spring enrollment when fall enrollment is 290.&lt;/P&gt;&lt;P&gt;I dont understand how to go about doing this especially when the fall enrollment is never 290.&lt;/P&gt;&lt;P&gt;the data is as follows:&lt;/P&gt;&lt;P&gt;data problem2a;&lt;/P&gt;&lt;P&gt;input&lt;BR /&gt;Ayear Fall Spring;&lt;BR /&gt;if Ayear = 2003 then delete;&lt;BR /&gt;datalines;&lt;BR /&gt;2001 259 246&lt;BR /&gt;2002 301 206&lt;BR /&gt;2003 343 288&lt;BR /&gt;2004 307 215&lt;BR /&gt;2005 286 230&lt;BR /&gt;2006 273 247&lt;BR /&gt;2007 248 308&lt;BR /&gt;2008 292 271&lt;BR /&gt;2009 250 285&lt;BR /&gt;2010 278 286&lt;BR /&gt;2011 303 254&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=problem2a;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand how to do a basic confidence interval on the enitre thing but not how to specify it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is the code I used for a basic CI but I dont think it in doing the right thing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc reg data=problem2a;&lt;BR /&gt;model spring = fall /clm cli;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2016 17:54:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/confidence-intervals-for-mean-spring-enrollment-when-fall/m-p/246945#M46258</guid>
      <dc:creator>MadQuidd</dc:creator>
      <dc:date>2016-01-29T17:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: confidence intervals for mean spring enrollment when fall enrollment is 290</title>
      <link>https://communities.sas.com/t5/SAS-Programming/confidence-intervals-for-mean-spring-enrollment-when-fall/m-p/246949#M46259</link>
      <description>&lt;P&gt;Add an additional record for a dummy year (other than one presented) with the value for fall of 290 and a missing spring value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at a regression procedure such as Proc reg and model with spring as the dependent and fall as the independent:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ask for the predicted values and confidence limits. There will be results in the output to predict and the interval.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not providing exact solution as your dataset name Problem2a looks like homework and you'll learn more looking up the syntax.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since there doesn't seem to be a requirement for predict if the fall enrollment in 2012 was 309 I would be very tempted to leave Year out of the model.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2016 18:22:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/confidence-intervals-for-mean-spring-enrollment-when-fall/m-p/246949#M46259</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-01-29T18:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: confidence intervals for mean spring enrollment when fall enrollment is 290</title>
      <link>https://communities.sas.com/t5/SAS-Programming/confidence-intervals-for-mean-spring-enrollment-when-fall/m-p/246966#M46263</link>
      <description>This is known as scoring - you can looking up scoring with respect to PROC REG or PROC SCORE. &lt;BR /&gt;</description>
      <pubDate>Fri, 29 Jan 2016 19:54:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/confidence-intervals-for-mean-spring-enrollment-when-fall/m-p/246966#M46263</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-29T19:54:13Z</dc:date>
    </item>
  </channel>
</rss>

