<?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: I did first two parts and need help on part c,d and e. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/I-did-first-two-parts-and-need-help-on-part-c-d-and-e/m-p/771570#M244881</link>
    <description>&lt;P&gt;In the future, people want you to post data like this:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data hurricane1;
input name $ year death_toll;
datalines;
Katrina 2005 1200
Andrew 1992 23
Charley 2004 10
Wilma 2005 5
Ivan 2004 25
Rita 2005 7
Frances 2004 6
Hugo 1989 21
Jeanne 2004 5
Floyd 1999 56
;
proc print;
run;

data hurricane2;
input storm $ wind_speed storm_surge season;
datalines;
Katrina 125 26 2005
Andrew 145 17 1992
Charley 120 7 2004
Wilma 112 7 2005
Ivan 120 12 2004
Rita 115 7 2005
Frances 105 6 2004
Hugo 135 15 1989
Jeanne 120 5 2004
Floyd 100 9 1989
;
proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 01 Oct 2021 12:34:02 GMT</pubDate>
    <dc:creator>tarheel13</dc:creator>
    <dc:date>2021-10-01T12:34:02Z</dc:date>
    <item>
      <title>I did first two parts and need help on part c,d and e.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-did-first-two-parts-and-need-help-on-part-c-d-and-e/m-p/771533#M244851</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (98).png"&gt;&lt;img src="https://communities.sas.com/skins/images/2FD96521DCF95C42FE57BF2A7CB72678/responsive_peak/images/image_not_found.png" alt="Screenshot (98).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 01:35:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-did-first-two-parts-and-need-help-on-part-c-d-and-e/m-p/771533#M244851</guid>
      <dc:creator>BaazGill</dc:creator>
      <dc:date>2021-10-01T01:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: I did first two parts and need help on part c,d and e.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-did-first-two-parts-and-need-help-on-part-c-d-and-e/m-p/771541#M244857</link>
      <description>&lt;P&gt;Welcome in the community!&lt;/P&gt;
&lt;P&gt;This looks like homework, so please share what you have already tried, also please note that hardly anyone will provide working code, when no usable data is supplied.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 05:54:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-did-first-two-parts-and-need-help-on-part-c-d-and-e/m-p/771541#M244857</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-10-01T05:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: I did first two parts and need help on part c,d and e.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-did-first-two-parts-and-need-help-on-part-c-d-and-e/m-p/771564#M244876</link>
      <description>&lt;P&gt;You need to use rename statement. You can look that up in the documentation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Interleaving means you will have: set hurricane1 hurricane2; by name;&lt;/P&gt;
&lt;P&gt;To merge, you have to sort both by name and then do merge hurricane1 hurricane2; by name;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 12:16:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-did-first-two-parts-and-need-help-on-part-c-d-and-e/m-p/771564#M244876</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2021-10-01T12:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: I did first two parts and need help on part c,d and e.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-did-first-two-parts-and-need-help-on-part-c-d-and-e/m-p/771570#M244881</link>
      <description>&lt;P&gt;In the future, people want you to post data like this:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data hurricane1;
input name $ year death_toll;
datalines;
Katrina 2005 1200
Andrew 1992 23
Charley 2004 10
Wilma 2005 5
Ivan 2004 25
Rita 2005 7
Frances 2004 6
Hugo 1989 21
Jeanne 2004 5
Floyd 1999 56
;
proc print;
run;

data hurricane2;
input storm $ wind_speed storm_surge season;
datalines;
Katrina 125 26 2005
Andrew 145 17 1992
Charley 120 7 2004
Wilma 112 7 2005
Ivan 120 12 2004
Rita 115 7 2005
Frances 105 6 2004
Hugo 135 15 1989
Jeanne 120 5 2004
Floyd 100 9 1989
;
proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Oct 2021 12:34:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-did-first-two-parts-and-need-help-on-part-c-d-and-e/m-p/771570#M244881</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2021-10-01T12:34:02Z</dc:date>
    </item>
  </channel>
</rss>

