<?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: Selecting every 10th observation from a dataset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Selecting-every-10th-observation-from-a-dataset/m-p/31506#M6034</link>
    <description>Thanks!  This is exactly what I needed.</description>
    <pubDate>Wed, 16 Dec 2009 20:40:36 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-12-16T20:40:36Z</dc:date>
    <item>
      <title>Selecting every 10th observation from a dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Selecting-every-10th-observation-from-a-dataset/m-p/31504#M6032</link>
      <description>I would like to create a subset to of data by selecting every 10th record, does anyone know how to do this?  Thanks in advance!!</description>
      <pubDate>Wed, 16 Dec 2009 19:53:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Selecting-every-10th-observation-from-a-dataset/m-p/31504#M6032</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-12-16T19:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting every 10th observation from a dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Selecting-every-10th-observation-from-a-dataset/m-p/31505#M6033</link>
      <description>one possibility using SET and POINT.&lt;BR /&gt;
[pre]&lt;BR /&gt;
data every10;&lt;BR /&gt;
   do point = 10 to nobs by 10; &lt;BR /&gt;
      set sashelp.shoes point=point nobs=nobs;&lt;BR /&gt;
      output;&lt;BR /&gt;
      end;&lt;BR /&gt;
   stop;&lt;BR /&gt;
   run;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Wed, 16 Dec 2009 20:01:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Selecting-every-10th-observation-from-a-dataset/m-p/31505#M6033</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2009-12-16T20:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting every 10th observation from a dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Selecting-every-10th-observation-from-a-dataset/m-p/31506#M6034</link>
      <description>Thanks!  This is exactly what I needed.</description>
      <pubDate>Wed, 16 Dec 2009 20:40:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Selecting-every-10th-observation-from-a-dataset/m-p/31506#M6034</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-12-16T20:40:36Z</dc:date>
    </item>
  </channel>
</rss>

