<?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 Counting number of unexposed lung cancer cases and controls in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Counting-number-of-unexposed-lung-cancer-cases-and-controls/m-p/672414#M9278</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I would appreciate if someone could help me with the SAS code to count the number of cases(ca case) and controls (pop cont) not exposed to any of the the 4 agents (a1, a2,a3 and a4 ) below. Exposed is 1 and unexposed is zero (0).&amp;nbsp; &amp;nbsp;From the dataset, ids os3, os6, os7 and os9 are unexposed to any of the agents so the freq should be 4. I would like the frequency to be split the frequence into ca case and pop cont. os3: pop cont, os6: ca case, o7: ca case and os9: ca case so in total there are 1 pop cont and 3 ca case (total 4 subjects) but I would like SAS to split the freq of 4 into their respective lung cancer type(ca case and pop cont). The output from attached table 2 is not correct. I need SAS to show and count only the unexposed subjects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Please, can anyone help me to with the SAS code to solve this problem? My code and log are found below; results are attached, but actually Table 2 is incorrect.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;ak.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data agents_exp;&lt;BR /&gt;input id$ a1 a2 a3 a4  lung$ 13-20;&lt;BR /&gt;datalines;&lt;BR /&gt;os1 1 0 0 1 ca case&lt;BR /&gt;os2 1 1 0 0 ca case&lt;BR /&gt;os3 0 0 0 0 pop cont&lt;BR /&gt;os5 1 0 0 1 pop cont&lt;BR /&gt;os6 0 0 0 0 ca case&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;DIV&gt;
&lt;DIV class="sasSource"&gt;OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV class="sasSource"&gt;73 data agents_exp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;74 input id$ a1 a2 a3 a4 lung$ 13-20;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;75 datalines;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="sasLogNote1_1595795351522" class="sasNote"&gt;NOTE: The data set WORK.AGENTS_EXP has 8 observations and 6 variables.&lt;/DIV&gt;
&lt;DIV id="sasLogNote2_1595795351522" class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.02 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;84 ;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;85 run;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;86 proc print data=agents_exp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;87 Title 'Table 1: Exposure of ids to 4 agents';&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;88&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="sasLogNote3_1595795351522" class="sasNote"&gt;NOTE: There were 8 observations read from the data set WORK.AGENTS_EXP.&lt;/DIV&gt;
&lt;DIV id="sasLogNote4_1595795351522" class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.23 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.22 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;89 proc sql;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;90 create table t as&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;91 select&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;92 id, a1, a2, a3,a4,lung,&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;93 sum(a1,a2,a3,a4)=0 as afinal&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;94 from agents_exp&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;95 ;&lt;/DIV&gt;
&lt;DIV id="sasLogNote5_1595795351522" class="sasNote"&gt;NOTE: Table WORK.T created, with 8 rows and 7 columns.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;96 quit;&lt;/DIV&gt;
&lt;DIV id="sasLogNote6_1595795351522" class="sasNote"&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.01 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;97&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;98 proc freq data=t;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;99 tables lung*afinal;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;100 title 'Table 2: freq of ca case and pop cont for for unexposed agents';&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;101 run;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="sasLogNote7_1595795351522" class="sasNote"&gt;NOTE: There were 8 observations read from the data set WORK.T.&lt;/DIV&gt;
&lt;DIV id="sasLogNote8_1595795351522" class="sasNote"&gt;NOTE: PROCEDURE FREQ used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.21 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.20 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;102&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;103 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;115&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;PRE id="pre_sasLog_62" class="sasLog"&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;PRE&gt;&lt;BR /&gt;&lt;BR /&gt;os7 0 0 0 0 ca case&lt;BR /&gt;os8 1 0 1 1 pop cont&lt;BR /&gt;os9 0 0 0 0 ca case&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=agents_exp;&lt;BR /&gt;Title 'Table 1: Exposure of ids to 4 agents';&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;create table t as&lt;BR /&gt;select&lt;BR /&gt;id, a1, a2, a3,a4,lung,&lt;BR /&gt;sum(a1,a2,a3,a4)=0 as afinal&lt;BR /&gt;from agents_exp&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;proc freq data=t;&lt;BR /&gt;tables lung*afinal;&lt;BR /&gt;title 'Table 2: freq of ca case and pop cont for for unexposed agents';&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 26 Jul 2020 20:38:36 GMT</pubDate>
    <dc:creator>ak2011</dc:creator>
    <dc:date>2020-07-26T20:38:36Z</dc:date>
    <item>
      <title>Counting number of unexposed lung cancer cases and controls</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-number-of-unexposed-lung-cancer-cases-and-controls/m-p/672414#M9278</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I would appreciate if someone could help me with the SAS code to count the number of cases(ca case) and controls (pop cont) not exposed to any of the the 4 agents (a1, a2,a3 and a4 ) below. Exposed is 1 and unexposed is zero (0).&amp;nbsp; &amp;nbsp;From the dataset, ids os3, os6, os7 and os9 are unexposed to any of the agents so the freq should be 4. I would like the frequency to be split the frequence into ca case and pop cont. os3: pop cont, os6: ca case, o7: ca case and os9: ca case so in total there are 1 pop cont and 3 ca case (total 4 subjects) but I would like SAS to split the freq of 4 into their respective lung cancer type(ca case and pop cont). The output from attached table 2 is not correct. I need SAS to show and count only the unexposed subjects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Please, can anyone help me to with the SAS code to solve this problem? My code and log are found below; results are attached, but actually Table 2 is incorrect.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;ak.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data agents_exp;&lt;BR /&gt;input id$ a1 a2 a3 a4  lung$ 13-20;&lt;BR /&gt;datalines;&lt;BR /&gt;os1 1 0 0 1 ca case&lt;BR /&gt;os2 1 1 0 0 ca case&lt;BR /&gt;os3 0 0 0 0 pop cont&lt;BR /&gt;os5 1 0 0 1 pop cont&lt;BR /&gt;os6 0 0 0 0 ca case&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;DIV&gt;
&lt;DIV class="sasSource"&gt;OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV class="sasSource"&gt;73 data agents_exp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;74 input id$ a1 a2 a3 a4 lung$ 13-20;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;75 datalines;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="sasLogNote1_1595795351522" class="sasNote"&gt;NOTE: The data set WORK.AGENTS_EXP has 8 observations and 6 variables.&lt;/DIV&gt;
&lt;DIV id="sasLogNote2_1595795351522" class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.02 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;84 ;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;85 run;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;86 proc print data=agents_exp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;87 Title 'Table 1: Exposure of ids to 4 agents';&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;88&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="sasLogNote3_1595795351522" class="sasNote"&gt;NOTE: There were 8 observations read from the data set WORK.AGENTS_EXP.&lt;/DIV&gt;
&lt;DIV id="sasLogNote4_1595795351522" class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.23 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.22 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;89 proc sql;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;90 create table t as&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;91 select&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;92 id, a1, a2, a3,a4,lung,&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;93 sum(a1,a2,a3,a4)=0 as afinal&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;94 from agents_exp&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;95 ;&lt;/DIV&gt;
&lt;DIV id="sasLogNote5_1595795351522" class="sasNote"&gt;NOTE: Table WORK.T created, with 8 rows and 7 columns.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;96 quit;&lt;/DIV&gt;
&lt;DIV id="sasLogNote6_1595795351522" class="sasNote"&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.01 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;97&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;98 proc freq data=t;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;99 tables lung*afinal;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;100 title 'Table 2: freq of ca case and pop cont for for unexposed agents';&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;101 run;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="sasLogNote7_1595795351522" class="sasNote"&gt;NOTE: There were 8 observations read from the data set WORK.T.&lt;/DIV&gt;
&lt;DIV id="sasLogNote8_1595795351522" class="sasNote"&gt;NOTE: PROCEDURE FREQ used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.21 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.20 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;102&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;103 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;115&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;PRE id="pre_sasLog_62" class="sasLog"&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;PRE&gt;&lt;BR /&gt;&lt;BR /&gt;os7 0 0 0 0 ca case&lt;BR /&gt;os8 1 0 1 1 pop cont&lt;BR /&gt;os9 0 0 0 0 ca case&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=agents_exp;&lt;BR /&gt;Title 'Table 1: Exposure of ids to 4 agents';&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;create table t as&lt;BR /&gt;select&lt;BR /&gt;id, a1, a2, a3,a4,lung,&lt;BR /&gt;sum(a1,a2,a3,a4)=0 as afinal&lt;BR /&gt;from agents_exp&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;proc freq data=t;&lt;BR /&gt;tables lung*afinal;&lt;BR /&gt;title 'Table 2: freq of ca case and pop cont for for unexposed agents';&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jul 2020 20:38:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-number-of-unexposed-lung-cancer-cases-and-controls/m-p/672414#M9278</guid>
      <dc:creator>ak2011</dc:creator>
      <dc:date>2020-07-26T20:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Counting number of unexposed lung cancer cases and controls</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-number-of-unexposed-lung-cancer-cases-and-controls/m-p/672416#M9279</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=agents_exp(where=(sum(of a1-a4)=0)));
     table lung;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 26 Jul 2020 20:43:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-number-of-unexposed-lung-cancer-cases-and-controls/m-p/672416#M9279</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-26T20:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Counting number of unexposed lung cancer cases and controls</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-number-of-unexposed-lung-cancer-cases-and-controls/m-p/672513#M9280</link>
      <description>Hi,&lt;BR /&gt;Thanks for your time. There were errors in the code so I modified it a bit before it worked:&lt;BR /&gt;&lt;BR /&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 72         &lt;BR /&gt; 73         proc freq data=agents_exp(where=(sum(of a1-a4)=0)));&lt;BR /&gt;                                                    __        _&lt;BR /&gt;                                                    22        200&lt;BR /&gt;                                                    76&lt;BR /&gt; ERROR 22-322: Syntax error, expecting one of the following: !, !!, &amp;amp;, (, *, **, +, ',', -, /, &amp;lt;, &amp;lt;=, &amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;=, ?, AND, BETWEEN, &lt;BR /&gt;               CONTAINS, EQ, GE, GT, LE, LIKE, LT, NE, OR, ^=, |, ||, ~=.  &lt;BR /&gt; &lt;BR /&gt; ERROR 200-322: The symbol is not recognized and will be ignored.&lt;BR /&gt; &lt;BR /&gt; ERROR 76-322: Syntax error, statement will be ignored.&lt;BR /&gt; &lt;BR /&gt; 73       ! proc freq data=agents_exp(where=(sum(of a1-a4)=0)));&lt;BR /&gt;                                                              _&lt;BR /&gt;                                                              22&lt;BR /&gt; ERROR: Syntax error while parsing WHERE clause.&lt;BR /&gt; ERROR 22-322: Syntax error, expecting one of the following: ;, COMPRESS, DATA, FC, FORMCHAR, NLEVELS, NOPRINT, ORDER, PAGE.  &lt;BR /&gt; 74              table lung;&lt;BR /&gt; 75         &lt;BR /&gt; 76         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 88         &lt;BR /&gt;&lt;BR /&gt;I modified as:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 72         &lt;BR /&gt; 73         proc freq data=agents_exp(where=(sum(a1,a2,a3,a4)=0));&lt;BR /&gt; 74              table lung;&lt;BR /&gt; 75         run;&lt;BR /&gt; &lt;BR /&gt; NOTE: There were 4 observations read from the data set WORK.AGENTS_EXP.&lt;BR /&gt;       WHERE SUM(a1, a2, a3, a4)=0;&lt;BR /&gt; NOTE: PROCEDURE FREQ used (Total process time):&lt;BR /&gt;       real time           0.25 seconds&lt;BR /&gt;       cpu time            0.24 seconds&lt;BR /&gt;       &lt;BR /&gt; &lt;BR /&gt; 76         &lt;BR /&gt; 77         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 89         &lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;ak.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Jul 2020 12:42:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-number-of-unexposed-lung-cancer-cases-and-controls/m-p/672513#M9280</guid>
      <dc:creator>ak2011</dc:creator>
      <dc:date>2020-07-27T12:42:20Z</dc:date>
    </item>
  </channel>
</rss>

