<?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: random selection of records based on some percentage in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/random-selection-of-records-based-on-some-percentage/m-p/210306#M39005</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check &lt;/P&gt;&lt;H1 class="name title" style="font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; color: #003399; font-size: 20px; background-color: #ffffff;"&gt;The SURVEYSELECT Procedure&lt;/H1&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_surveyselect_sect024.htm" title="http://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_surveyselect_sect024.htm"&gt;http://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_surveyselect_sect024.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 May 2015 15:05:15 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2015-05-06T15:05:15Z</dc:date>
    <item>
      <title>random selection of records based on some percentage</title>
      <link>https://communities.sas.com/t5/SAS-Programming/random-selection-of-records-based-on-some-percentage/m-p/210304#M39003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to select 10% of 'M' and 50% of 'F' from the dataset sashelp.class?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 13:20:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/random-selection-of-records-based-on-some-percentage/m-p/210304#M39003</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2015-05-06T13:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: random selection of records based on some percentage</title>
      <link>https://communities.sas.com/t5/SAS-Programming/random-selection-of-records-based-on-some-percentage/m-p/210305#M39004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If random number is &amp;lt; than 10 then output, else remove:&lt;/P&gt;&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2011/08/24/how-to-generate-random-numbers-in-sas.html" title="http://blogs.sas.com/content/iml/2011/08/24/how-to-generate-random-numbers-in-sas.html"&gt;http://blogs.sas.com/content/iml/2011/08/24/how-to-generate-random-numbers-in-sas.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 14:16:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/random-selection-of-records-based-on-some-percentage/m-p/210305#M39004</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-05-06T14:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: random selection of records based on some percentage</title>
      <link>https://communities.sas.com/t5/SAS-Programming/random-selection-of-records-based-on-some-percentage/m-p/210306#M39005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check &lt;/P&gt;&lt;H1 class="name title" style="font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; color: #003399; font-size: 20px; background-color: #ffffff;"&gt;The SURVEYSELECT Procedure&lt;/H1&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_surveyselect_sect024.htm" title="http://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_surveyselect_sect024.htm"&gt;http://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_surveyselect_sect024.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 15:05:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/random-selection-of-records-based-on-some-percentage/m-p/210306#M39005</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-05-06T15:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: random selection of records based on some percentage</title>
      <link>https://communities.sas.com/t5/SAS-Programming/random-selection-of-records-based-on-some-percentage/m-p/210307#M39006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data class;&lt;/P&gt;&lt;P&gt; set sashelp.class;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc sort data=class;by sex;run;&lt;/P&gt;&lt;P&gt;proc surveyselect data=class samprate=(0.1 0.5) out=want;&lt;/P&gt;&lt;P&gt; strata sex;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2015 14:18:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/random-selection-of-records-based-on-some-percentage/m-p/210307#M39006</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-05-07T14:18:16Z</dc:date>
    </item>
  </channel>
</rss>

