<?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: Standard Error and Confidence Intervals in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454442#M284160</link>
    <description>&lt;P&gt;In addition to what&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;said, you may want to take a look at&amp;nbsp;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_glm_sect037.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_glm_sect037.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC GLM may not be the proc that you want to be using for your model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Apr 2018 14:46:40 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2018-04-16T14:46:40Z</dc:date>
    <item>
      <title>Standard Error and Confidence Intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454066#M284156</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm wondering why the standard errors (lsmeans/stderr) for proc glm are the same for means of different groups.&amp;nbsp; &amp;nbsp;The&amp;nbsp;confidence limits (lsmeans/CL) are equal as well.&amp;nbsp; &amp;nbsp;In other statistical programs it seems that the errors are different for each group.&amp;nbsp; Does it have something to do with how the variance is pooled?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tom&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2018 21:17:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454066#M284156</guid>
      <dc:creator>tompatmck</dc:creator>
      <dc:date>2018-04-13T21:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Error and Confidence Intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454067#M284157</link>
      <description>&lt;P&gt;Post some example data (in the form of a datastep) and the proc glm that you ran.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2018 21:24:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454067#M284157</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-04-13T21:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Error and Confidence Intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454438#M284158</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a randomized complete block design with treatment as a fixed effect and block as a random effect.&amp;nbsp; There are 4 levels of treatment and 4 levels of block.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glm;&lt;/P&gt;&lt;P&gt;class block treatment;&lt;/P&gt;&lt;P&gt;model biomass = block treatment;&lt;/P&gt;&lt;P&gt;random block;&lt;/P&gt;&lt;P&gt;lsmeans treatment/stderr cl;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The standard error for the lsmean is the same for all levels of the treatment effect.&amp;nbsp; Also the confidence limits are equal for each treatment level.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any more insight would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 14:27:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454438#M284158</guid>
      <dc:creator>tompatmck</dc:creator>
      <dc:date>2018-04-16T14:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Error and Confidence Intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454441#M284159</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp;clearly requested that you "&lt;SPAN&gt;Post some example data (in the form of a datastep)". I don't see the data.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If the number of observations is the same in each group (and other assumptions are met), you could get standard errors that are the same for each group.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 14:37:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454441#M284159</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-04-16T14:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Error and Confidence Intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454442#M284160</link>
      <description>&lt;P&gt;In addition to what&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;said, you may want to take a look at&amp;nbsp;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_glm_sect037.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_glm_sect037.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC GLM may not be the proc that you want to be using for your model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 14:46:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454442#M284160</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-04-16T14:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Error and Confidence Intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454443#M284161</link>
      <description>&lt;P&gt;Sorry about that.&amp;nbsp; The design is balanced so there are equal reps in each treatment.&amp;nbsp; I natural log transformed the data to meet assumptions.&amp;nbsp; Here is some data and the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options formdlim = '-';&lt;BR /&gt;data GH_AC2015;&lt;BR /&gt;input Blk$ Pot$ Species$ Treatment$ Biomass Rootbiomass;&lt;BR /&gt;biot=LOG(Biomass);&lt;BR /&gt;roott=LOG(Rootbiomass);&lt;BR /&gt;cards;&lt;BR /&gt;1 6 AC Oven 0.2718 0.0703&lt;BR /&gt;1 7 AC Sterile 0.087 0.0459&lt;BR /&gt;1 13 AC Control 0.2551 0.0583&lt;BR /&gt;1 14 AC Rescue 0.117 0.0493&lt;BR /&gt;2 21 AC Sterile 0.072 0.0658&lt;BR /&gt;2 24 AC Control 0.1514 0.0413&lt;BR /&gt;2 26 AC Rescue 0.207 0.0398&lt;BR /&gt;2 29 AC Oven 0.1304 0.0485&lt;BR /&gt;3 33 AC Control 0.087 0.0204&lt;BR /&gt;3 38 AC Rescue 0.2012 0.0576&lt;BR /&gt;3 41 AC Sterile 0.0191 0.0196&lt;BR /&gt;3 44 AC Oven 0.1434 0.0797&lt;BR /&gt;4 52 AC Oven 0.2601 0.0976&lt;BR /&gt;4 55 AC Control 0.3554 0.0791&lt;BR /&gt;4 59 AC Rescue 0.2981 0.0652&lt;BR /&gt;4 64 AC Sterile 0.0834 0.0975&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;proc glm ;&lt;BR /&gt;class blk treatment ;&lt;BR /&gt;model biomass = blk treatment;&lt;BR /&gt;random blk;&lt;BR /&gt;lsmeans treatment/stderr cl adjust = tukey;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 14:47:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454443#M284161</guid>
      <dc:creator>tompatmck</dc:creator>
      <dc:date>2018-04-16T14:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Error and Confidence Intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454446#M284162</link>
      <description>&lt;P&gt;So equal number of observations in each cell will produce equal stadnard errors in each cell.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may have done a log transformation, but your GLM code doesn't use the log-data.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 14:52:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Error-and-Confidence-Intervals/m-p/454446#M284162</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-04-16T14:52:23Z</dc:date>
    </item>
  </channel>
</rss>

