<?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: Statistical procedure in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Statistical-procedure/m-p/729908#M35399</link>
    <description>Hi reeza ,&lt;BR /&gt;&lt;BR /&gt;thanks for your reply i want to calculate GMR across doses(dose1-dose2, dose2-dose3, dose3-dose45) on whole population. what stsitsical procedure i can use . when I seached online it showing me below syntax:&lt;BR /&gt;&lt;BR /&gt;PROC SURVEYMEANS data=my_data geomean;&lt;BR /&gt;var dose1 dose2;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;is there any other procedure to get values?</description>
    <pubDate>Mon, 29 Mar 2021 23:10:46 GMT</pubDate>
    <dc:creator>mounikag</dc:creator>
    <dc:date>2021-03-29T23:10:46Z</dc:date>
    <item>
      <title>Statistical procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Statistical-procedure/m-p/729906#M35397</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have data as below&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;subject&amp;nbsp; dose1&amp;nbsp; dose2&amp;nbsp; dose3&amp;nbsp; dose4&lt;/U&gt;&lt;/P&gt;&lt;P&gt;101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.32&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.93&amp;nbsp; &amp;nbsp;0.54&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.61&lt;/P&gt;&lt;P&gt;102&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.23&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.99&amp;nbsp; &amp;nbsp;0.54&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.71&lt;/P&gt;&lt;P&gt;103&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.32&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.23&amp;nbsp; &amp;nbsp;0.84&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.71&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;104&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.33&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.93&amp;nbsp; &amp;nbsp;0.64&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.61&lt;/P&gt;&lt;P&gt;105&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.22&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.73&amp;nbsp; &amp;nbsp;0.44&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.66&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to calculate GMR(geometric mean ratio) acrooss doses like dose1-dose2, dose2-dose3 and dose3- dose4. I wanted to find the geometric&lt;BR /&gt;mean across each variable for the whole subjects. so i want the output has below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Doses&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GMR value(geometric mean ratio)&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Dose1&lt;/P&gt;&lt;P&gt;Dose2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;xx&lt;/P&gt;&lt;P&gt;Dose3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xx&lt;/P&gt;&lt;P&gt;Dose4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so what procedure i need to use to calculate GMR across doses . is it possible to calculate GMR in proc TTest procedure if yes, wat is the option available to use in syntax?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 22:51:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Statistical-procedure/m-p/729906#M35397</guid>
      <dc:creator>mounikag</dc:creator>
      <dc:date>2021-03-29T22:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Statistical-procedure/m-p/729907#M35398</link>
      <description>&lt;P&gt;Can you please illustrate the full calculation? I'm familiar with geometric mean but that doesn't look like what you're looking for here so want to be absolutely sure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Making assumptions:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data diff;
set have;

dose2_dose1 = dose2-dose1;
dose3_dose2 = dose3-dose2;
dose4_dose3 = dose4-dose3;
run;

proc ttest data=diff dist=lognormal;
var dose2_dose1 dose3_dose2 dose4_dose3;
ods select confLimits = WANT;
run;

proc print data=want;run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2019/10/02/geometric-mean-deviation-cv-sas.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2019/10/02/geometric-mean-deviation-cv-sas.html&lt;/A&gt;&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/339070"&gt;@mounikag&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have data as below&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;subject&amp;nbsp; dose1&amp;nbsp; dose2&amp;nbsp; dose3&amp;nbsp; dose4&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.32&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.93&amp;nbsp; &amp;nbsp;0.54&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.61&lt;/P&gt;
&lt;P&gt;102&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.23&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.99&amp;nbsp; &amp;nbsp;0.54&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.71&lt;/P&gt;
&lt;P&gt;103&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.32&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.23&amp;nbsp; &amp;nbsp;0.84&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.71&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;104&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.33&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.93&amp;nbsp; &amp;nbsp;0.64&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.61&lt;/P&gt;
&lt;P&gt;105&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.22&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.73&amp;nbsp; &amp;nbsp;0.44&amp;nbsp; &amp;nbsp; &amp;nbsp; 0.66&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to calculate GMR(geometric mean ratio) acrooss doses like dose1-dose2, dose2-dose3 and dose3- dose4. I wanted to find the geometric&lt;BR /&gt;mean across each variable for the whole subjects. so i want the output has below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Doses&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GMR value(geometric mean ratio)&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;Dose1&lt;/P&gt;
&lt;P&gt;Dose2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;xx&lt;/P&gt;
&lt;P&gt;Dose3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xx&lt;/P&gt;
&lt;P&gt;Dose4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xx&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so what procedure i need to use to calculate GMR across doses . is it possible to calculate GMR in proc TTest procedure if yes, wat is the option available to use in syntax?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 23:02:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Statistical-procedure/m-p/729907#M35398</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-03-29T23:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Statistical-procedure/m-p/729908#M35399</link>
      <description>Hi reeza ,&lt;BR /&gt;&lt;BR /&gt;thanks for your reply i want to calculate GMR across doses(dose1-dose2, dose2-dose3, dose3-dose45) on whole population. what stsitsical procedure i can use . when I seached online it showing me below syntax:&lt;BR /&gt;&lt;BR /&gt;PROC SURVEYMEANS data=my_data geomean;&lt;BR /&gt;var dose1 dose2;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;is there any other procedure to get values?</description>
      <pubDate>Mon, 29 Mar 2021 23:10:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Statistical-procedure/m-p/729908#M35399</guid>
      <dc:creator>mounikag</dc:creator>
      <dc:date>2021-03-29T23:10:46Z</dc:date>
    </item>
  </channel>
</rss>

