<?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 SAS SUDAAN rlogistic regression output saved in sas file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-SUDAAN-rlogistic-regression-output-saved-in-sas-file/m-p/850381#M336082</link>
    <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need help on SAS callable SUDAAN. Here is the example that I am currently working on.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sudaansupport.rti.org/examples/Logistic%20Example%203.pdf" target="_blank"&gt;Logistic Example 3.pdf (rti.org)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will need to save the output from the risk ratio. from the the condrisk that line in a sas datafile.&lt;/P&gt;
&lt;P&gt;(print cond_rr="Risk Ratio" pred_rr="Risk Ratio"/ condrisk=default predrisk=default;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I am not able to find the variable names. Could you please help me?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My codes are the same as in&amp;nbsp;Exhibit 14. Here goes the example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC RLOGIST DATA=samadult DESIGN=WR FILETYPE=SAS;&lt;BR /&gt;NEST STRAT_P PSU_P;&lt;BR /&gt;WEIGHT WTFA_SA;&lt;BR /&gt;SUBPOPX AGE_P&amp;gt;24 AND MRACRPI2=1 / NAME="WHITES AGED 25+";&lt;BR /&gt;CLASS SEX AGE25_3 EDUC_3 REGION MARRY_3;&lt;BR /&gt;REFLEVEL SEX=1 REGION=1 MARRY_3=1;&lt;BR /&gt;MODEL CANTAFMEDS = SEX AGE25_3 EDUC_3 REGION MARRY_3;&lt;BR /&gt;EFFECTS AGE25_3 = (1 -1 0) / exp name="AGE: 25-44 vs. 45-64";&lt;BR /&gt;CONDMARG AGE25_3 / adjrr;&lt;BR /&gt;PREDMARG AGE25_3 / adjrr;&lt;BR /&gt;COND_EFF AGE25_3=(1 0 -1) / NAME = "25-44 vs. 65+";&lt;BR /&gt;COND_EFF AGE25_3=(0 1 -1) / NAME = "45-64 vs. 65+";&lt;BR /&gt;COND_EFF AGE25_3=(1 -1 0) / NAME = "25-44 vs. 45-64";&lt;BR /&gt;PRED_EFF AGE25_3=(1 0 -1) / NAME = "25-44 vs. 65+";&lt;BR /&gt;PRED_EFF AGE25_3=(0 1 -1) / NAME = "45-64 vs. 65+";&lt;BR /&gt;PRED_EFF AGE25_3=(1 -1 0) / NAME = "25-44 vs. 45-64";&lt;BR /&gt;setenv labwidth=17 colspce=1;&lt;BR /&gt;print / betas=default betafmt=f7.4 sebetafmt=f8.4 lowbetafmt=f7.4 upbetafmt=f7.4&lt;BR /&gt;t_betafmt=f6.2 p_betafmt=f7.4;&lt;BR /&gt;setenv labwidth=23 colspce=4 decwidth=3;&lt;BR /&gt;print / risk=default tests=default expcntrst=default waldpfmt=f7.4&lt;BR /&gt;dffmt=f7.0 loworfmt=f9.3 uporfmt=f9.3 low_cntrstfmt=f5.3&lt;BR /&gt;up_cntrstfmt=f5.3;&lt;BR /&gt;setenv colspce=1 labwidth=22 decwidth=4 colwidth=9;&lt;BR /&gt;print condmrg="CONDMARG" predmrg="PREDMARG" /&lt;BR /&gt;cond_mrg=default cnmgcons=default pred_mrg=default prmgcons=default&lt;BR /&gt;t_cndmrgfmt=f8.2 t_prdmrgfmt=f8.2 t_cmconfmt=f8.2 t_pmconfmt=f8.2;&lt;BR /&gt;setenv labwidth=27 decwidth=3 colwidth=5 colspce=5;&lt;BR /&gt;print cond_rr="Risk Ratio" pred_rr="Risk Ratio" &lt;BR /&gt;/ condrisk=default predrisk=default;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Dec 2022 20:34:57 GMT</pubDate>
    <dc:creator>linda0910</dc:creator>
    <dc:date>2022-12-19T20:34:57Z</dc:date>
    <item>
      <title>SAS SUDAAN rlogistic regression output saved in sas file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-SUDAAN-rlogistic-regression-output-saved-in-sas-file/m-p/850381#M336082</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need help on SAS callable SUDAAN. Here is the example that I am currently working on.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sudaansupport.rti.org/examples/Logistic%20Example%203.pdf" target="_blank"&gt;Logistic Example 3.pdf (rti.org)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will need to save the output from the risk ratio. from the the condrisk that line in a sas datafile.&lt;/P&gt;
&lt;P&gt;(print cond_rr="Risk Ratio" pred_rr="Risk Ratio"/ condrisk=default predrisk=default;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I am not able to find the variable names. Could you please help me?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My codes are the same as in&amp;nbsp;Exhibit 14. Here goes the example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC RLOGIST DATA=samadult DESIGN=WR FILETYPE=SAS;&lt;BR /&gt;NEST STRAT_P PSU_P;&lt;BR /&gt;WEIGHT WTFA_SA;&lt;BR /&gt;SUBPOPX AGE_P&amp;gt;24 AND MRACRPI2=1 / NAME="WHITES AGED 25+";&lt;BR /&gt;CLASS SEX AGE25_3 EDUC_3 REGION MARRY_3;&lt;BR /&gt;REFLEVEL SEX=1 REGION=1 MARRY_3=1;&lt;BR /&gt;MODEL CANTAFMEDS = SEX AGE25_3 EDUC_3 REGION MARRY_3;&lt;BR /&gt;EFFECTS AGE25_3 = (1 -1 0) / exp name="AGE: 25-44 vs. 45-64";&lt;BR /&gt;CONDMARG AGE25_3 / adjrr;&lt;BR /&gt;PREDMARG AGE25_3 / adjrr;&lt;BR /&gt;COND_EFF AGE25_3=(1 0 -1) / NAME = "25-44 vs. 65+";&lt;BR /&gt;COND_EFF AGE25_3=(0 1 -1) / NAME = "45-64 vs. 65+";&lt;BR /&gt;COND_EFF AGE25_3=(1 -1 0) / NAME = "25-44 vs. 45-64";&lt;BR /&gt;PRED_EFF AGE25_3=(1 0 -1) / NAME = "25-44 vs. 65+";&lt;BR /&gt;PRED_EFF AGE25_3=(0 1 -1) / NAME = "45-64 vs. 65+";&lt;BR /&gt;PRED_EFF AGE25_3=(1 -1 0) / NAME = "25-44 vs. 45-64";&lt;BR /&gt;setenv labwidth=17 colspce=1;&lt;BR /&gt;print / betas=default betafmt=f7.4 sebetafmt=f8.4 lowbetafmt=f7.4 upbetafmt=f7.4&lt;BR /&gt;t_betafmt=f6.2 p_betafmt=f7.4;&lt;BR /&gt;setenv labwidth=23 colspce=4 decwidth=3;&lt;BR /&gt;print / risk=default tests=default expcntrst=default waldpfmt=f7.4&lt;BR /&gt;dffmt=f7.0 loworfmt=f9.3 uporfmt=f9.3 low_cntrstfmt=f5.3&lt;BR /&gt;up_cntrstfmt=f5.3;&lt;BR /&gt;setenv colspce=1 labwidth=22 decwidth=4 colwidth=9;&lt;BR /&gt;print condmrg="CONDMARG" predmrg="PREDMARG" /&lt;BR /&gt;cond_mrg=default cnmgcons=default pred_mrg=default prmgcons=default&lt;BR /&gt;t_cndmrgfmt=f8.2 t_prdmrgfmt=f8.2 t_cmconfmt=f8.2 t_pmconfmt=f8.2;&lt;BR /&gt;setenv labwidth=27 decwidth=3 colwidth=5 colspce=5;&lt;BR /&gt;print cond_rr="Risk Ratio" pred_rr="Risk Ratio" &lt;BR /&gt;/ condrisk=default predrisk=default;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 20:34:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-SUDAAN-rlogistic-regression-output-saved-in-sas-file/m-p/850381#M336082</guid>
      <dc:creator>linda0910</dc:creator>
      <dc:date>2022-12-19T20:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAS SUDAAN rlogistic regression output saved in sas file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-SUDAAN-rlogistic-regression-output-saved-in-sas-file/m-p/850389#M336087</link>
      <description>&lt;P&gt;SUDAAN software does work with SAS, but it is created and maintained by&amp;nbsp;&lt;A href="https://www.rti.org/" target="_self"&gt;RTI International.&lt;/A&gt;&amp;nbsp;You'll probably get quicker and better answers by submitting your technical question to SUDAAN support. You can log in with your SUDAAN account and&amp;nbsp;&lt;A href="https://sudaanorder.rti.org/Account/Login?ReturnUrl=%2FSupport%2FQuestion" target="_self"&gt;ask a question here.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;All the best,&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 21:15:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-SUDAAN-rlogistic-regression-output-saved-in-sas-file/m-p/850389#M336087</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2022-12-19T21:15:08Z</dc:date>
    </item>
  </channel>
</rss>

