<?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: How to compute simulation error of a parameter in a simulated data set in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188333#M265841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I'm interpreting this correctly,&lt;/P&gt;&lt;P&gt;SUM(bete_i-bar(beta))=0 always, assuming bar(beta) is average of beta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Feb 2014 15:49:39 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2014-02-27T15:49:39Z</dc:date>
    <item>
      <title>How to compute simulation error of a parameter in a simulated data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188329#M265837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am interested in computing the simulated error for the parameter t in the regression.&amp;nbsp; SAS gives me the regression error ot t which is StdEr I wish to know if sas has an easy way to get it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 00:07:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188329#M265837</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2014-02-27T00:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute simulation error of a parameter in a simulated data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188330#M265838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is your formula above correct?&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote" modifiedtitle="true"&gt;
&lt;P&gt;desireatem wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; The simulated error is sqrt (1/N-1(SUM(bete_i-bar(beta)). &lt;/P&gt;
&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 00:12:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188330#M265838</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-02-27T00:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute simulation error of a parameter in a simulated data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188331#M265839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It might not be correctly type. However do you know how to compute the simulated standard error. This is the correct simulation error: SQRT [1/N-1 *SUM(Est(beta_i- bar(beta))] where N=1000 number of replicates.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 00:20:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188331#M265839</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2014-02-27T00:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute simulation error of a parameter in a simulated data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188332#M265840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would restating the simulation error as sqrt(sum(beta_i - beta_bar)/(N-1)) be correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would feel more comfortable with sqrt(sum((beta_i - beta_bar)&lt;STRONG&gt;^2)&lt;/STRONG&gt;/(N-1)), so that it is now essentially the standard deviation of the beta_i estimates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 13:45:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188332#M265840</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-02-27T13:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute simulation error of a parameter in a simulated data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188333#M265841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I'm interpreting this correctly,&lt;/P&gt;&lt;P&gt;SUM(bete_i-bar(beta))=0 always, assuming bar(beta) is average of beta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 15:49:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-compute-simulation-error-of-a-parameter-in-a-simulated/m-p/188333#M265841</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-02-27T15:49:39Z</dc:date>
    </item>
  </channel>
</rss>

