<?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: How can I run log normal distribution from proc genmod. There is no default option for log norma in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897938#M354909</link>
    <description>Sorry. I have no clue. Maybe &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt; &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt; could give you a hint.&lt;BR /&gt;&lt;BR /&gt;Did you check PROC FMM ?</description>
    <pubDate>Tue, 10 Oct 2023 11:23:07 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2023-10-10T11:23:07Z</dc:date>
    <item>
      <title>How can I run log normal distribution from proc genmod. There is no default option for log normal</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897528#M354669</link>
      <description>I have been trying to run a GLM on my data. My data seems to be a good fit for log normal distribution. However, there is no default distribution of log normal in proc genmod. Please suggest how can I do so.</description>
      <pubDate>Fri, 06 Oct 2023 04:33:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897528#M354669</guid>
      <dc:creator>Vitthal</dc:creator>
      <dc:date>2023-10-06T04:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: How can I run log normal distribution from proc genmod. There is no default option for log norma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897531#M354671</link>
      <description>Try FMM procedure,  &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;  's blog mention it, or LOG(Y)  firstly and model it by normal distribution. &lt;BR /&gt;Check Rick's blog:&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2015/09/16/plot-distrib-exp.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2015/09/16/plot-distrib-exp.html&lt;/A&gt;</description>
      <pubDate>Fri, 06 Oct 2023 04:58:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897531#M354671</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-10-06T04:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can I run log normal distribution from proc genmod. There is no default option for log norma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897807#M354843</link>
      <description>&lt;P&gt;How would I calculate the relativities basis the estimates? It shouldnt be exp(Estimates)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 12:53:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897807#M354843</guid>
      <dc:creator>Vitthal</dc:creator>
      <dc:date>2023-10-09T12:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: How can I run log normal distribution from proc genmod. There is no default option for log norma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897938#M354909</link>
      <description>Sorry. I have no clue. Maybe &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt; &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt; could give you a hint.&lt;BR /&gt;&lt;BR /&gt;Did you check PROC FMM ?</description>
      <pubDate>Tue, 10 Oct 2023 11:23:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897938#M354909</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-10-10T11:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: How can I run log normal distribution from proc genmod. There is no default option for log norma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897950#M354914</link>
      <description>&lt;P&gt;KSharp linked to an article that shows two different models. I assume you want the first model, which is Y = exp(a + b*X) + eps, where eps ~ N(0,sigma) iid.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title "Generalized Linear Model of Y with log link";
proc genmod data=MyData;
   model y = x / dist=normal link=log;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If that is not what you want, please provide more information.&lt;/P&gt;
&lt;P&gt;Your most recent question is&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;How would I calculate the relativities basis the estimates? It shouldnt be exp(Estimates)&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;I don't understand the question. If the model is Y = exp(a + b*X) + eps, then the procedure gives you the parameter estimates. They do not need to be transformed. If you prefer an equivalent multiplicative model, you can use the predictor exp(a)*exp(b*x).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The article shows how to transform the predicted values by applying the inverse link function.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 13:03:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-run-log-normal-distribution-from-proc-genmod-There-is/m-p/897950#M354914</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-10-10T13:03:10Z</dc:date>
    </item>
  </channel>
</rss>

