<?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: Geometric mean ratios with 95% confidence intervals in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/542171#M74159</link>
    <description>&lt;P&gt;An example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data heart;
set sashelp.heart;
lChol = log(Cholesterol);
label lChol="Log(Cholesterol)";
run;

proc genmod data=heart;
class smoking_status;
model lChol = smoking_status;
lsmeans smoking_status / diff exp cl;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 11 Mar 2019 18:57:51 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2019-03-11T18:57:51Z</dc:date>
    <item>
      <title>Geometric mean ratios with 95% confidence intervals</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/542025#M74155</link>
      <description>I have a dataset of IgG values for three groups. How can I compare the exponentiated differences between log10 transformed group means and present them as geometric mean ratios with associated 95% confidence intervals?</description>
      <pubDate>Mon, 11 Mar 2019 14:14:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/542025#M74155</guid>
      <dc:creator>ph6</dc:creator>
      <dc:date>2019-03-11T14:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Geometric mean ratios with 95% confidence intervals</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/542105#M74157</link>
      <description>&lt;P&gt;Examples of the data that you currently have would be helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Geometric means normally involve the natural log. Are you sure that Log10 is needed?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 16:50:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/542105#M74157</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-11T16:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Geometric mean ratios with 95% confidence intervals</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/542171#M74159</link>
      <description>&lt;P&gt;An example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data heart;
set sashelp.heart;
lChol = log(Cholesterol);
label lChol="Log(Cholesterol)";
run;

proc genmod data=heart;
class smoking_status;
model lChol = smoking_status;
lsmeans smoking_status / diff exp cl;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Mar 2019 18:57:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/542171#M74159</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-03-11T18:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Geometric mean ratios with 95% confidence intervals</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/767735#M81012</link>
      <description>&lt;P&gt;I used Proc genmod on some dummy sas-data preparing for real data to calculate GMT, and GMT ratios. I want to compare groups 1-3 separately vs group 4 as regards the ratios and the results are below but I cannot find a way to output the&amp;nbsp;lsmeans gr / diff exp cl results into a dataset for further processing (add to table outputs). Any suggestions? Also the procedure used for the&amp;nbsp; would be appreciated (guess I have to investigate the SAS documentation):&lt;/P&gt;&lt;P&gt;proc genmod data=gmt;&lt;BR /&gt;class gr;&lt;BR /&gt;model lChol = gr;&lt;BR /&gt;lsmeans gr / diff exp cl;&lt;BR /&gt;*output out=out_gmt ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HF_clin_0-1631629533911.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/63585i5E8E9DEA7B9E6894/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HF_clin_0-1631629533911.png" alt="HF_clin_0-1631629533911.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 14:31:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/767735#M81012</guid>
      <dc:creator>HF_clin</dc:creator>
      <dc:date>2021-09-14T14:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Geometric mean ratios with 95% confidence intervals</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/767781#M81013</link>
      <description>&lt;P&gt;Add the statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ods trace on; &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;before the procedure call to get a list of available output datasets in the log. Then use a statement such as&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE id="pre_sasLog_134512" class="sasLog" style="background-color: transparent; -webkit-user-select: text; -webkit-user-modify: read-only; -webkit-touch-callout: default; border-top-width: 0px; border-bottom-width: 0px;"&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="4"&gt;ods output LSMeans=myLsmeans Diffs=myDiffs;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;P&gt;among the procedure statements to output the datasets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/397952"&gt;@HF_clin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;... guess I have to investigate the SAS documentation...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;definitely!&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 17:38:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/767781#M81013</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2021-09-14T17:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Geometric mean ratios with 95% confidence intervals</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/767791#M81014</link>
      <description>Thanks! Definitely!</description>
      <pubDate>Tue, 14 Sep 2021 18:38:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Geometric-mean-ratios-with-95-confidence-intervals/m-p/767791#M81014</guid>
      <dc:creator>HF_clin</dc:creator>
      <dc:date>2021-09-14T18:38:52Z</dc:date>
    </item>
  </channel>
</rss>

