<?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: Interpreting SAS codes in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Interpreting-SAS-codes/m-p/442430#M282716</link>
    <description>Or try the program on some data.&lt;BR /&gt;Potentially using the data step debugger.</description>
    <pubDate>Mon, 05 Mar 2018 17:16:04 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2018-03-05T17:16:04Z</dc:date>
    <item>
      <title>Interpreting SAS codes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Interpreting-SAS-codes/m-p/442324#M282714</link>
      <description>&lt;P&gt;As a neophyte, I am trying&amp;nbsp;to find out what the codes, given below, are trying to achieve. I would appreciate if you could explain the following codes in plain English. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I understand the first set of codes, which basically get the data.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql noprint;
    create table rates as
    select date, days, rate
    from optionm.zerocd;
quit;

proc expand data=rates out=rates_expanded from=daily;
    by date;
    id days;
    convert rate;
run;

data RiskFree;
    set rates_expanded;
    by date;
    if FIRST.date then do;
      do days = 1 to days;
        output;
      end;
    end;
    else output;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 12:37:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Interpreting-SAS-codes/m-p/442324#M282714</guid>
      <dc:creator>Budu</dc:creator>
      <dc:date>2018-03-05T12:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting SAS codes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Interpreting-SAS-codes/m-p/442410#M282715</link>
      <description>&lt;P&gt;might be better to ask the person who gave you the code&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 16:32:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Interpreting-SAS-codes/m-p/442410#M282715</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2018-03-05T16:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting SAS codes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Interpreting-SAS-codes/m-p/442430#M282716</link>
      <description>Or try the program on some data.&lt;BR /&gt;Potentially using the data step debugger.</description>
      <pubDate>Mon, 05 Mar 2018 17:16:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Interpreting-SAS-codes/m-p/442430#M282716</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-03-05T17:16:04Z</dc:date>
    </item>
  </channel>
</rss>

