<?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: Zero-Inflated Gamma Model - NLMIXED - SAS 9.4 in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281561#M14827</link>
    <description>&lt;P&gt;You could consider modifying the gamma deviance a bit as follows and fitting the model in GENMOD. &amp;nbsp;This avoids the issue of GENMOD not allowing zero responses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc genmod;&lt;BR /&gt;d = _resp_/_mean_ + log(_mean_);&lt;BR /&gt;variance var = _mean_**2;&lt;BR /&gt;deviance dev = d;&lt;BR /&gt;model y = x / link = log;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Jun 2016 20:39:09 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2016-06-30T20:39:09Z</dc:date>
    <item>
      <title>Zero-Inflated Gamma Model - NLMIXED - SAS 9.4</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/280048#M14755</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am tring to model a zero inflated log-gamma model in a multicenter study. I have a semicontinuous outcome which is gamma distributed for the non-zero part of the distribution. However around 20% of patients scored zero for the outcome variable.&lt;/P&gt;&lt;P&gt;I initially modelled 1 independent variable (country) in a fixed effect model just to check whether I could do the coding right. I dummy coded this variable (which has 11 levels). I have got this warning:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Convergence criterion (GCONV=1E-8) satisfied.&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;NOTE: At least one element of the gradient is greater than 1e-3.&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;NOTE: Moore-Penrose inverse is used in covariance matrix.&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;WARNING: The final Hessian matrix is not positive definite, and therefore the estimated covariance&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; matrix is not full rank and may be unreliable.&amp;nbsp; The variance of some parameter estimates is&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zero or some parameters are linearly related to other parameters.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc nlmixed data = data lognote = 3 ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;parms &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;/*intercept*/a0=1 &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;/*country dummies - Sp is reference*/a1=0.1 a2=0.1 a3=0.1 a4=0.1 a5=0.1 a6=0.1 a7=0.1 a8=0.1 a9=0.1 /*a10=0.1*/ a11=0.1 &amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;log_theta = 0;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;title "NLMIXED - Log-Gamma inflated model" ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;y = outcome;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;linfp = a0 + a1*CZ + a2*FR + a3*HU + a4*IT + a5*PL + a6*PT + a7*RO + a8*RU + a9*SK + /*a10*SP + */a11*TR;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;infprob = exp(linfp)/(1+exp(linfp)) ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;linp = b0 + b1*CZ + b2*FR + b3*HU + b4*IT + b5*PL + b6*PT + b7*RO + b8*RU + b9*SK + /*b10*SP +*/ b11*TR;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;mu&amp;nbsp;&amp;nbsp; = exp(linp);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;theta = exp(log_theta) ; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;r = mu/theta ; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if y = 0 then ll = log(infprob) ; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;else ll = log(1-infprob) - lgamma(theta) + (theta-1)*log(y) - theta*log(r) - y/r ; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;model y ~ general(ll);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;predict pred out=prediction;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I am new to NLMIXED and I most likely did wrong somewhere. I would really appreciate if you could help me through.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;L.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 18:44:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/280048#M14755</guid>
      <dc:creator>LucaNeri</dc:creator>
      <dc:date>2016-06-24T18:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Zero-Inflated Gamma Model - NLMIXED - SAS 9.4</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/280806#M14797</link>
      <description>&lt;P&gt;I think your code is probably OK--the problem most likely is in the data, and how much you have. &amp;nbsp; It looks like (at least to me) that you have nearly identical observations for at least 2 countries. &amp;nbsp;This would lead to the degenerate condition that would throw the warning. &amp;nbsp;What does the crosstab for y by country look like? &amp;nbsp;It may be hard to get at if you have lots of data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the complete other hand, with 11 levels in a ZI model, you are estimating 20 fixed effects (captured in mu) plus theta, so the other possibility is not enough data to estimate all of the parameters well. &amp;nbsp;So, if you only have a dozen or so patients per country, many of which have the same y value, you might be in this predicament.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 14:41:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/280806#M14797</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-06-28T14:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Zero-Inflated Gamma Model - NLMIXED - SAS 9.4</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281561#M14827</link>
      <description>&lt;P&gt;You could consider modifying the gamma deviance a bit as follows and fitting the model in GENMOD. &amp;nbsp;This avoids the issue of GENMOD not allowing zero responses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc genmod;&lt;BR /&gt;d = _resp_/_mean_ + log(_mean_);&lt;BR /&gt;variance var = _mean_**2;&lt;BR /&gt;deviance dev = d;&lt;BR /&gt;model y = x / link = log;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2016 20:39:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281561#M14827</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2016-06-30T20:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: Zero-Inflated Gamma Model - NLMIXED - SAS 9.4</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281677#M14832</link>
      <description>&lt;P&gt;Dear Steve,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for your reply. I have a very large sample (n range from 5K to 32K for each country). So the hypothesis of being underpowered seems very unlikely. I have looked at the y distributions in each country. Both the average and the % of zeros is different&amp;nbsp; across countries. In one or two countries the % of zero is not so big while in some other countries the % of zero is very big. There seem not to be overlap between countries that would justify the warning.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to run a similar model using proc FMM.&lt;/P&gt;&lt;P&gt;title "Finite Mixture Model - Gamma, zero inflated model" ;&lt;BR /&gt;proc fmm data =[DATA] gconv=0;&lt;BR /&gt;class country; model Y=country/dist=gamma ;&lt;BR /&gt;model Y=/dist=constant ;&lt;BR /&gt;probmodel country;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The model &lt;STRONG&gt;failed to compute the mixing probabilities&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This was not the case after running a zero inflated, log-normal model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;title "Finite Mixture Model - Lognormal, zero inflated model" ;&lt;BR /&gt;proc fmm data =[DATA] gconv=0;&lt;BR /&gt;class country; model Y=country/dist=Lognormal;&lt;BR /&gt;model Y=/dist=constant ;&lt;BR /&gt;probmodel country;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The logs were the same for both models:&lt;/P&gt;&lt;P&gt;NOTE: Convergence criterion (FCONV=2.220446E-16) satisfied.&lt;BR /&gt;&lt;STRONG&gt;NOTE: At least one element of the gradient is greater than 1e-3.&lt;/STRONG&gt;&lt;BR /&gt;NOTE: PROCEDURE FMM used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5.43 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19.15 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is strange because, I looked at the distributions of the Y using proc univariate and the gamma distribution fitted the positive part of the Y distribution quite well (at least as well as the lognormal, in any case).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc univariate data=[DATA];&lt;BR /&gt;&amp;nbsp;&amp;nbsp; var Y;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; histogram Y/ midpoints=uniform&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lognormal (theta=est)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; weibull (theta=est)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gamma (theta=est)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vaxis&amp;nbsp;&amp;nbsp; = axis1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'Histogram';&lt;BR /&gt;&amp;nbsp;&amp;nbsp; inset n mean(5.3) std='Std Dev'(5.3) skewness(5.3)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / pos = ne&amp;nbsp; header = 'Summary Statistics';&lt;BR /&gt;&amp;nbsp;&amp;nbsp; axis1 label=(a=90 r=0);&lt;BR /&gt;where Y ne 0;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3884i108BCC165645C7A5/image-size/original?v=v2&amp;amp;px=-1" alt="Distribution Y.png" title="Distribution Y.png" border="0" /&gt;&lt;/P&gt;&lt;P&gt;Any thought?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2016 10:55:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281677#M14832</guid>
      <dc:creator>LucaNeri</dc:creator>
      <dc:date>2016-07-01T10:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Zero-Inflated Gamma Model - NLMIXED - SAS 9.4</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281695#M14833</link>
      <description>&lt;P&gt;Hi Dave, Thanks for your reply. I know the modification you suggested and used it in the past. Actually I need to estimate a zero-inflated model bacause the gamma regression itself do not adequately fit the data. &lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3888i800058BD3CFEC73B/image-size/original?v=v2&amp;amp;px=-1" alt="Distribution Y - Full.png" title="Distribution Y - Full.png" border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2016 12:13:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281695#M14833</guid>
      <dc:creator>LucaNeri</dc:creator>
      <dc:date>2016-07-01T12:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Zero-Inflated Gamma Model - NLMIXED - SAS 9.4</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281771#M14840</link>
      <description>&lt;P&gt;I hate to start out with a bad pun, but what we need is a 'mix' of&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave﻿&lt;/a&gt;&amp;nbsp;' s restatement of the gamma distribution that has support at zero and a whole boatload of zeroes in PROC FMM. &amp;nbsp;I think the reason the lognormal gives mixing probabilities and the gamma doesn't there is due to the undefined nature at zero of the gamma.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, you can show that the lognormal is a special case of the gamma (or vice versa, maybe), because I had to do it on a midterm about 40 years ago. &amp;nbsp;And given that, I think the FMM with the lognormal is very likely a good model for the mixing probabilities under a more general gamma distribution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2016 17:24:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281771#M14840</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-07-01T17:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Zero-Inflated Gamma Model - NLMIXED - SAS 9.4</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281777#M14842</link>
      <description>&lt;P&gt;@SteveDenham&amp;nbsp;you might be misremembering the relationship between gamma and lognormal. Although each has limiting cases that asymptotically approach the normal distibution, I believe that the two distributions are distinct for any finite parameter values. If you plot the skewness and kurtosis of these distributions on a moment-ratio diagram, the curves do not overlap or intersect..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have my book &lt;EM&gt;Simulating Data with SAS, &lt;/EM&gt;you can view a moment-ratio diagram in Chapter 16, such as Fig 16.3 or 16.9.&amp;nbsp; I also have &lt;A href="http://support.sas.com/publishing/authors/extras/65378_Appendix_E_Constructing_a_Moment_Ratio_Diagram_in_SAS.pdf" target="_self"&gt;an online version of an appendix (p.&lt;/A&gt; 372) that contains a simplified moment-ratio diagram.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From a modeling perspective, however, the two distributions have similar shapes, which is the crux of your argument, I think.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2016 17:50:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281777#M14842</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-07-01T17:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Zero-Inflated Gamma Model - NLMIXED - SAS 9.4</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281782#M14849</link>
      <description>&lt;P&gt;Thanks,&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS﻿&lt;/a&gt;.. &amp;nbsp;The midterm probably was more like show that there is a special case of the gamma distribution that is identical to the chi-squared distribution--another asymmetric, long right tailed distribution.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2016 17:58:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281782#M14849</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-07-01T17:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: Zero-Inflated Gamma Model - NLMIXED - SAS 9.4</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281785#M14851</link>
      <description>&lt;P&gt;Ah yes, that makes sense.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Slightly off-topic, but have you ever wondered why some continuous distributions (like gamma) are supported by SAS procedures like PROC UNIVARIATE whereas others (like chi-square) are not?&amp;nbsp; Maybe this was discussed in your theory classes, but exercises like you describe on your midterm&amp;nbsp;muddy the water between distributions that describe data and distributions that describe statistics. For some philosophical musings on the matter (including the answer to your midterm exam question!), see &lt;A href="http://blogs.sas.com/content/iml/2015/12/07/proc-univariate-distributions.html" target="_self"&gt;"Why doesn't PROC UNIVARIATE support certain common distributions?"&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2016 18:32:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Zero-Inflated-Gamma-Model-NLMIXED-SAS-9-4/m-p/281785#M14851</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-07-01T18:32:27Z</dc:date>
    </item>
  </channel>
</rss>

