<?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: Newbie question: create temp Freq distribution table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Newbie-question-create/m-p/309800#M312746</link>
    <description>&lt;P&gt;Are you saying that currently you have a text document that you need to create data from?&lt;/P&gt;
&lt;P&gt;I would expect 'Good' and 'Bad' to be LEVELS of the Variables Old and New (or OldClaim and NewClaim) or such.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide a few rows of what you might want this to actually look like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a guess of one way:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data want;
  do i=1 to 243;
    old= 0;
    new= 0;
    output;
  end;
  do i=1 to 49;
    old= 0;
    new= 1;
    output;
  end;
  do i=1 to 71;
    old= 1;
    new= 0;
    output;
  end;
  do i=1 to 40;
    old= 1;
    new= 1;
    output;
  end;
  drop i;
run;

   
   &lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 07 Nov 2016 18:21:05 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-11-07T18:21:05Z</dc:date>
    <item>
      <title>Newbie question: create</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-question-create/m-p/309790#M312745</link>
      <description>&lt;P&gt;I'm trying to create&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2016 19:37:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-question-create/m-p/309790#M312745</guid>
      <dc:creator>Rafa0001</dc:creator>
      <dc:date>2016-11-07T19:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie question: create temp Freq distribution table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-question-create/m-p/309800#M312746</link>
      <description>&lt;P&gt;Are you saying that currently you have a text document that you need to create data from?&lt;/P&gt;
&lt;P&gt;I would expect 'Good' and 'Bad' to be LEVELS of the Variables Old and New (or OldClaim and NewClaim) or such.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide a few rows of what you might want this to actually look like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a guess of one way:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data want;
  do i=1 to 243;
    old= 0;
    new= 0;
    output;
  end;
  do i=1 to 49;
    old= 0;
    new= 1;
    output;
  end;
  do i=1 to 71;
    old= 1;
    new= 0;
    output;
  end;
  do i=1 to 40;
    old= 1;
    new= 1;
    output;
  end;
  drop i;
run;

   
   &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Nov 2016 18:21:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-question-create/m-p/309800#M312746</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-11-07T18:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie question: create temp Freq distribution table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-question-create/m-p/309803#M312747</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attached the table.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2016 19:38:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-question-create/m-p/309803#M312747</guid>
      <dc:creator>Rafa0001</dc:creator>
      <dc:date>2016-11-07T19:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie question: create temp Freq distribution table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Newbie-question-create/m-p/309813#M312748</link>
      <description>&lt;P&gt;That is not what dataset would generally look like. A data set consists of variables and values,&lt;/P&gt;
&lt;P&gt;So it might be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Old&amp;nbsp;&amp;nbsp; New&lt;/P&gt;
&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;
&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;
&lt;P&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;What type of operation are you going to do with the resulting data set?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2016 18:55:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Newbie-question-create/m-p/309813#M312748</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-11-07T18:55:06Z</dc:date>
    </item>
  </channel>
</rss>

