<?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 get multiple same obs from a single record of raw data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-multiple-same-obs-from-a-single-record-of-raw-data/m-p/379642#M91385</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ds2;
set ds1;
do i = 1 to 4;
  output;
end;
drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 27 Jul 2017 06:42:04 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-07-27T06:42:04Z</dc:date>
    <item>
      <title>How to get multiple same obs from a single record of raw data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-multiple-same-obs-from-a-single-record-of-raw-data/m-p/379634#M91383</link>
      <description>&lt;P&gt;Hey i have a data like this...&lt;/P&gt;&lt;P&gt;data DS1;&lt;BR /&gt;INFILE DATALINES;&lt;BR /&gt;INPUT NAME $;&lt;BR /&gt;DATALINES;&lt;BR /&gt;LION&lt;/P&gt;&lt;P&gt;TIGER&lt;BR /&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output should be a dataset with 8 observations and it should look like&lt;/P&gt;&lt;P&gt;name&lt;/P&gt;&lt;P&gt;LION&lt;/P&gt;&lt;P&gt;LION&lt;/P&gt;&lt;P&gt;LION&lt;/P&gt;&lt;P&gt;LION&lt;/P&gt;&lt;P&gt;TIGER&lt;/P&gt;&lt;P&gt;TIGER&lt;/P&gt;&lt;P&gt;TIGER&lt;/P&gt;&lt;P&gt;TIGER&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 05:55:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-multiple-same-obs-from-a-single-record-of-raw-data/m-p/379634#M91383</guid>
      <dc:creator>Bhargav_Movva</dc:creator>
      <dc:date>2017-07-27T05:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to get multiple same obs from a single record of raw data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-multiple-same-obs-from-a-single-record-of-raw-data/m-p/379642#M91385</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ds2;
set ds1;
do i = 1 to 4;
  output;
end;
drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jul 2017 06:42:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-multiple-same-obs-from-a-single-record-of-raw-data/m-p/379642#M91385</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-07-27T06:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to get multiple same obs from a single record of raw data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-multiple-same-obs-from-a-single-record-of-raw-data/m-p/379643#M91386</link>
      <description>&lt;P&gt;Like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data DS1;
INFILE DATALINES;
INPUT NAME $;
DATALINES;
LION
TIGER
;
RUN;

data want(keep=name);
	set ds1;
	do i=1 to 4;
		output;
	end;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jul 2017 06:49:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-multiple-same-obs-from-a-single-record-of-raw-data/m-p/379643#M91386</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-07-27T06:49:56Z</dc:date>
    </item>
  </channel>
</rss>

