<?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: what is wrong with this code? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497528#M131888</link>
    <description>&lt;P&gt;Some patients have BOTH rect_exp='1' and rect_interc='1'&lt;/P&gt;</description>
    <pubDate>Thu, 20 Sep 2018 19:16:11 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2018-09-20T19:16:11Z</dc:date>
    <item>
      <title>what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497508#M131881</link>
      <description>&lt;P&gt;data surrg.male_exposure2;&lt;BR /&gt;set surrg._male_exposure1;&lt;BR /&gt;if rect_exp = "1" OR rect_interc = "1" then rectal_exposure = "Yes";&lt;BR /&gt;else rectal_exposure = "0";&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 18:30:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497508#M131881</guid>
      <dc:creator>Dhana18</dc:creator>
      <dc:date>2018-09-20T18:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497509#M131882</link>
      <description>&lt;P&gt;Why do you think anything is wrong with it? Can you show us either the SASLOG, or results that are different than what you expect(and explain)?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 18:31:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497509#M131882</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-09-20T18:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497510#M131883</link>
      <description>&lt;P&gt;syntactically my eyes can't notice anything&lt;/P&gt;
&lt;P&gt;logically i don't know&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 18:33:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497510#M131883</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-09-20T18:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497524#M131887</link>
      <description>&lt;P&gt;260 data surrg.merged_male_exposure2;&lt;/P&gt;&lt;P&gt;261 set surrg.merged_male_exposure1;&lt;/P&gt;&lt;P&gt;262 if rect_exp = "1" OR rect_interc = "1" then rectal_exposure = "Yes";&lt;/P&gt;&lt;P&gt;263 run;&lt;/P&gt;&lt;P&gt;NOTE: There were 3439 observations read from the data set SURRG.MERGED_MALE_EXPOSURE1.&lt;/P&gt;&lt;P&gt;NOTE: The data set SURRG.MERGED_MALE_EXPOSURE2 has 3439 observations and 206 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.50 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.07 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did&amp;nbsp;a frequency analysis of rect_exp there are 410 patients with that exposure and rect_interc has 263 patients and after this code there should be 473 rectal exposure but it only give me 425.&amp;nbsp; That is wrong.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 19:11:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497524#M131887</guid>
      <dc:creator>Dhana18</dc:creator>
      <dc:date>2018-09-20T19:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497528#M131888</link>
      <description>&lt;P&gt;Some patients have BOTH rect_exp='1' and rect_interc='1'&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 19:16:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497528#M131888</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-09-20T19:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497549#M131895</link>
      <description>&lt;P&gt;This should give you the overlapping conditions:&lt;/P&gt;
&lt;PRE&gt;proc freq data=surrg.merged_male_exposure2;
  tables rect_exp* rect_interc* rectal_exposure /missing list ;
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Sep 2018 20:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-wrong-with-this-code/m-p/497549#M131895</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-09-20T20:33:47Z</dc:date>
    </item>
  </channel>
</rss>

