<?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: Get odds ratios from  PROC GAM in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983374#M49221</link>
    <description>&lt;P&gt;Thank you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;!!! This is awesome and an interesting way of getting the ORs.&lt;/P&gt;
&lt;P&gt;How would you write it if spline(age) and sex were interacting?&amp;nbsp; Basically if I had to use PROC LOGISTIC, can I use the same code to get effect for Age 45 vs 55 for males?&amp;nbsp; Also if I had to get the ORs for say 10 different time points, 45,47,48..etc vs 55, is there a way to write&amp;nbsp; a macro in the Proc report to repeat the calculations for many time points?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wonder if I should start a new thread.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Feb 2026 23:16:07 GMT</pubDate>
    <dc:creator>PamG</dc:creator>
    <dc:date>2026-02-11T23:16:07Z</dc:date>
    <item>
      <title>Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983112#M49199</link>
      <description>&lt;P&gt;Is there a way I can report odds ratio comparing 2 points for a GAM model?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE data-processed="true"&gt;&lt;CODE data-processed="true"&gt;&lt;SPAN class="undefined" data-processed="true"&gt;proc gampl data=mydata;
   class gender / param=ref;
   model response(event='1') = gender spline(age)  / dist=binary link=logit;
run;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; For eg, is there a way, I can report OR at say&amp;nbsp; age=65 to age=75?&amp;nbsp; &amp;nbsp;I know that R has an package, oddsratio specifically for GAM to get such odds ratios.&amp;nbsp; How can we replicate something similar in SAS?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 03:51:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983112#M49199</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2026-02-06T03:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983115#M49200</link>
      <description>Since you are asking OR for a SPLINE effect(a.k.a a non-linear effect), that is not easy to get it.&lt;BR /&gt;I think you need help from macro %margin , %nlmeans:&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/35/189.html" target="_blank"&gt;https://support.sas.com/kb/35/189.html&lt;/A&gt;</description>
      <pubDate>Fri, 06 Feb 2026 07:31:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983115#M49200</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-02-06T07:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983131#M49201</link>
      <description>&lt;P&gt;You cannot write contrasts in PROC GAM or PROC GAMPL.&amp;nbsp; Is there a workaround this? This is easily achieved in R for GAM models.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 15:12:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983131#M49201</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2026-02-06T15:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983133#M49202</link>
      <description>&lt;P&gt;You can fit a Generalized Additive logistic model to a binary response and obtain odds ratio estimates using the EFFECT statement in PROC LOGISTIC. The EFFECT statement creates the spline effect that you can use in the model. See the example in &lt;A href="https://support.sas.com/kb/70/221.html" target="_self"&gt;this note&lt;/A&gt;. In addition to the ODDSRATIO statement, you'll use the UNITS statement to specify the interval size that you want. For example&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=mydata;
   effect spla=spline(age/naturalcubic basis=tpf(noint));
   class gender / param=ref;
   model response(event='1') = gender spla;
   oddsratio age / at(age=65);
   units age=10;
   run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 15:44:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983133#M49202</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2026-02-06T15:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983135#M49203</link>
      <description>&lt;P&gt;This is not a GAM model.&amp;nbsp; I need to fit a GAM and not a GLM model.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 17:38:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983135#M49203</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2026-02-06T17:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983184#M49204</link>
      <description>It is a nonparametric regression unlike logistic model.&lt;BR /&gt;Maybe &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt; could give you a hand .</description>
      <pubDate>Sat, 07 Feb 2026 06:58:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983184#M49204</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-02-07T06:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983187#M49205</link>
      <description>With the addition of a spline term, the model fit in PROC LOGISTIC is indeed a GAM. See the description of GAMs, and the distinction with GLMs, in the Details:Generalized Additive Models section of the GAMPL procedure documentation. So, the only real difference is not the model type, but rather the fitting algorithm and details of how the spline is formed. But for practical purposes, they both fit a model allowing for an arbitrary amount of flexibility for the splined variable. And, of course, you can easily obtain odds ratios or other statistics available with PROC LOGISTIC.</description>
      <pubDate>Sat, 07 Feb 2026 16:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983187#M49205</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2026-02-07T16:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983191#M49206</link>
      <description>&lt;P&gt;GAM uses penalized likelihood with a penalty term for smoothing which is missing in GLM.&amp;nbsp; For the outcomes we deal with, GAM gives the best fit for such types of data.&amp;nbsp; I am aware of how it is done in SAS and getting contrasts for the spline effects but at this point what I am looking for is a solution using PROC GAM.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Feb 2026 23:08:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983191#M49206</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2026-02-07T23:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983235#M49207</link>
      <description>&lt;P&gt;If you have to use PROC GAMPL then you could compute the odds ratio from the predicted log odds values, which are available with the XBETA= option in the OUTPUT statement when fitting a logistic model. For example, these statements compute the odds ratio for a one unit (year) increase in age from 65 to 66 in the Neuralgia data as seen in an example in the PROC LOGISTIC documentation. Since a spline is used, the odds ratio estimate will differ depending at which age it is computed. The values in the DATA step are the estimated log odds for a 66 year old male and a 65 year old male. The exponentiated difference in the log odds is the odds ratio for a unit (year) increase in age.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc gampl data=neuralgia;
   class sex; id sex age;
   model pain(event='No') = param(sex) spline(age) / dist=binomial;
   output out=outg xbeta=logodds;
   run;
data _null_; or=exp(0.4048343234-0.5202755281); put or=; run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 10 Feb 2026 00:12:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983235#M49207</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2026-02-10T00:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983237#M49208</link>
      <description>&lt;P&gt;If I understood&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp; 's code ,you can report OR at age=65 to age=75 .&lt;/P&gt;
&lt;P&gt;a.k.a&amp;nbsp; OR= odds(age=65)/odds(age=75)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
 set sashelp.heart(obs=1000 keep=status sex ageatstart rename=(ageatstart=age sex=gender));
run;

data test;
gender='Male';age=65;output;
gender='Male';age=75;output;
run;



data mydata;
 set have test indsname=indsname;
 dsn=indsname;
run;
proc gampl data=mydata;
   class gender / param=ref;
   id dsn;
   model status= param(gender) spline(age)  / dist=binary link=logit;
   output out=out xbeta=logodds;
   run;
proc transpose data=out(where=(dsn='WORK.TEST')) out=logodds;
run;
proc report data=logodds nowd split='*';
column col1 col2 or;
define col1/display 'log(odds) for age=65';
define col2/display 'log(odds) for age=75';
define or/computed 'OR=odds(age=65)/odds(age=75)';
compute or;
 or=exp(col1-col2);
endcomp;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1770793276402.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/113136iFEBD11ADB44321DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1770793276402.png" alt="Ksharp_0-1770793276402.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp; indicated the Male and Female have the same OR since model did not include interact effect “gender*age” . You can test it with the following data. Thanks Dave.&lt;/P&gt;
&lt;PRE&gt;data test;
/*gender='Male  ';age=65;output;*/
/*gender='Male  ';age=75;output;*/
gender='Female';age=65;output;
gender='Female';age=75;output;
run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Feb 2026 07:03:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983237#M49208</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-02-11T07:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983275#M49209</link>
      <description>&lt;P&gt;Since gender does not interact with the age spline, the odds ratio estimate applies to both genders.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Feb 2026 15:26:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983275#M49209</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2026-02-10T15:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983314#M49211</link>
      <description>Thanks</description>
      <pubDate>Wed, 11 Feb 2026 06:52:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983314#M49211</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-02-11T06:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983374#M49221</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;!!! This is awesome and an interesting way of getting the ORs.&lt;/P&gt;
&lt;P&gt;How would you write it if spline(age) and sex were interacting?&amp;nbsp; Basically if I had to use PROC LOGISTIC, can I use the same code to get effect for Age 45 vs 55 for males?&amp;nbsp; Also if I had to get the ORs for say 10 different time points, 45,47,48..etc vs 55, is there a way to write&amp;nbsp; a macro in the Proc report to repeat the calculations for many time points?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wonder if I should start a new thread.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Feb 2026 23:16:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983374#M49221</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2026-02-11T23:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983378#M49222</link>
      <description>&lt;P&gt;If I use ESTIMATE then I do not get the same answers. I am not doing something right.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=mydata;
   class gender / param=ref;
   effect splage=spline(age/ basis=tpf knotmethod=equal(3));
   id dsn; 
   model status= gender splage gender*splage ;
 estimate 'For M: 45 vs 50(ref)' gender 2 splage[1,45][-1,50] gender*splage [1,2 45] [-1,2 50] / E EXP CL;
   output out=out xbeta=logodds;
   run;

proc transpose data=out(where=(dsn='WORK.TEST')) out=logodds;
run;

proc report data=logodds nowd split='*';
column col1 col2 or;
define col1/display 'log(odds) for age=45';
define col2/display 'log(odds) for age=50';
define or/computed 'OR=odds(age=45)/odds(age=50)';
compute or;
 or=exp(col1-col2);
endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Feb 2026 23:46:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983378#M49222</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2026-02-11T23:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983385#M49224</link>
      <description>&lt;P&gt;If I am using&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp; 's code, I could get the same OR.&lt;/P&gt;
&lt;P&gt;Check this:&lt;/P&gt;
&lt;P&gt;1) Main Effect&amp;nbsp; --&amp;gt; Same OR&lt;/P&gt;
&lt;PRE&gt;data have;
 set sashelp.heart(obs=1000 keep=status sex ageatstart rename=(ageatstart=age sex=gender));
run;

data test;
gender='Male';age=65;output;
gender='Male';age=75;output;
run;



data mydata;
 set have test indsname=indsname;
 dsn=indsname;
run;
proc logistic data=mydata;
   class gender / param=ref;
   effect spla=spline(age/naturalcubic basis=tpf(noint));
   model status= gender spla  ;
   &lt;STRONG&gt;   oddsratio age / at(age=65);
      units age=10;&lt;/STRONG&gt;

/* estimate 'For M: 45 vs 50(ref)' gender 2 splage[1,45][-1,50] gender*splage [1,2 45] [-1,2 50] / E EXP CL;*/
   output out=out xbeta=logodds;
   run;

proc transpose data=out(where=(dsn='WORK.TEST')) out=logodds;
&lt;STRONG&gt;var logodds;&lt;/STRONG&gt;
run;
proc report data=logodds nowd split='*';
column col1 col2 or;
define col1/display 'log(odds) for age=65';
define col2/display 'log(odds) for age=75';
define or/computed 'when gender="Male"*&lt;STRONG&gt;OR=odds(age=75)/odds(age=65)&lt;/STRONG&gt;';
compute or;
 or=&lt;STRONG&gt;exp(col2-col1)&lt;/STRONG&gt;;
endcomp;
run;
&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1770878542213.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/113145i063D2A7CCB989BFA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1770878542213.png" alt="Ksharp_0-1770878542213.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_1-1770878569736.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/113146iF21EE58A33C5E90D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_1-1770878569736.png" alt="Ksharp_1-1770878569736.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) Interact Effect&amp;nbsp;--&amp;gt; Also same OR&lt;/P&gt;
&lt;PRE&gt;proc logistic data=mydata;
   class gender / param=ref;
   effect spla=spline(age/naturalcubic basis=tpf(noint));
   model status= gender spla  &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;gender*spla&lt;/STRONG&gt;&lt;/FONT&gt;;
      oddsratio age / at(age=65);
      units age=10;

/* estimate 'For M: 45 vs 50(ref)' gender 2 splage[1,45][-1,50] gender*splage [1,2 45] [-1,2 50] / E EXP CL;*/
   output out=out xbeta=logodds;
   run;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_2-1770878865042.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/113147iEA6737C76E8D6C94/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_2-1770878865042.png" alt="Ksharp_2-1770878865042.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_3-1770878884643.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/113148i977AC1CEAB2A17E3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_3-1770878884643.png" alt="Ksharp_3-1770878884643.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2026 06:48:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983385#M49224</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-02-12T06:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Get odds ratios from  PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983404#M49230</link>
      <description>This is brilliant.  Thanks again.</description>
      <pubDate>Thu, 12 Feb 2026 15:11:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-odds-ratios-from-PROC-GAM/m-p/983404#M49230</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2026-02-12T15:11:49Z</dc:date>
    </item>
  </channel>
</rss>

