<?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 Create replicate weights for BRR method（variance estimation）? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-Create-replicate-weights-for-BRR-method-variance/m-p/646777#M31034</link>
    <description>&lt;P&gt;If the agency already provided you the replicate weights, why do you want to recreate them?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Each sets of replicate weights can be different for BRR and Bootstrap methods. If you want to generate the exact set of replicate weights as published in the data set, you have to contact the publisher of those replicate weights.&lt;/P&gt;</description>
    <pubDate>Mon, 11 May 2020 15:45:34 GMT</pubDate>
    <dc:creator>TonyAn</dc:creator>
    <dc:date>2020-05-11T15:45:34Z</dc:date>
    <item>
      <title>How to Create replicate weights for BRR method（variance estimation）?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-Create-replicate-weights-for-BRR-method-variance/m-p/646252#M31015</link>
      <description>&lt;P&gt;Recently I need to use BRR（balanced repeated replication）method to estimate the variance of data from a stratified sample design research(NHANES) .&lt;/P&gt;&lt;P&gt;I have got some examples,and i find that replicate weights have already been given (16 replicates) for each observation.&lt;/P&gt;&lt;P&gt;But the replicate weights are not included in primary data&amp;nbsp; absolutely. I tried&amp;nbsp; the brr method using the example's dataset with the following code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc surveymeans data =TMP1.DEMOADV varmethod = brr
(outweight = RepWeights);
weight w0304_0;
strata SDMVSTRA;
cluster SDMVPSU;
var SEQN;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The new replicate weights(&lt;EM&gt;&lt;STRONG&gt;RepWt&lt;/STRONG&gt;&lt;/EM&gt;) generated from this code are quite different from the weights given in the example.（only 2 values——0 and twice the primary weight）&lt;/P&gt;&lt;P&gt;How can I supposed to get a result like the examples(&lt;EM&gt;&lt;STRONG&gt;w0304) &lt;/STRONG&gt;&lt;/EM&gt;for the next steps needing replicates？（16 replicate weights are not equal to the others）&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1588952263(1).png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39223i5C071CC7E5B5E703/image-size/large?v=v2&amp;amp;px=999" role="button" title="1588952263(1).png" alt="1588952263(1).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1588952289(1).png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39224i5340F2D09C3FBA16/image-size/large?v=v2&amp;amp;px=999" role="button" title="1588952289(1).png" alt="1588952289(1).png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 15:45:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-Create-replicate-weights-for-BRR-method-variance/m-p/646252#M31015</guid>
      <dc:creator>keyl</dc:creator>
      <dc:date>2020-05-08T15:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create replicate weights for BRR method（variance estimation）?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-Create-replicate-weights-for-BRR-method-variance/m-p/646278#M31016</link>
      <description>&lt;P&gt;The SURVEYMEANS Procedure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="http://pubshelpcenter.unx.sas.com:8080/preproduction/?docsetId=statug&amp;amp;docsetTarget=statug_surveymeans_syntax08.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;REPWEIGHTS Statement&lt;/A&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;REPWEIGHTS variables &amp;lt;/ options&amp;gt;;&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 17:30:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-Create-replicate-weights-for-BRR-method-variance/m-p/646278#M31016</guid>
      <dc:creator>TonyAn</dc:creator>
      <dc:date>2020-05-08T17:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create replicate weights for BRR method（variance estimation）?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-Create-replicate-weights-for-BRR-method-variance/m-p/646452#M31021</link>
      <description>&lt;P&gt;Would you please show a exact sample code？&lt;/P&gt;&lt;P&gt;The result was not different after I added repweights statement. As far as I am concerned, the repweights statement is used when the replicate weights are already given,so you don't have to offer STRATA and CLUSTER.&lt;/P&gt;&lt;P&gt;And I just want to know how can I generate all these replicate weights.&lt;/P&gt;&lt;P&gt;Thanks for your reply.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 May 2020 04:56:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-Create-replicate-weights-for-BRR-method-variance/m-p/646452#M31021</guid>
      <dc:creator>keyl</dc:creator>
      <dc:date>2020-05-10T04:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create replicate weights for BRR method（variance estimation）?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-Create-replicate-weights-for-BRR-method-variance/m-p/646777#M31034</link>
      <description>&lt;P&gt;If the agency already provided you the replicate weights, why do you want to recreate them?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Each sets of replicate weights can be different for BRR and Bootstrap methods. If you want to generate the exact set of replicate weights as published in the data set, you have to contact the publisher of those replicate weights.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 15:45:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-Create-replicate-weights-for-BRR-method-variance/m-p/646777#M31034</guid>
      <dc:creator>TonyAn</dc:creator>
      <dc:date>2020-05-11T15:45:34Z</dc:date>
    </item>
  </channel>
</rss>

