<?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: Maximum likelihood estimation for limited dependent variables in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931918#M46459</link>
    <description>&lt;P&gt;Not sure I see the problem with prediction. While the distribution mean cannot be zero, individual realizations from the distribution can be zero. For instance, the PDF at zero for a Tweedie distribution with p=1.5 and mean=1 is nonzero:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_; p=pdf('tweedie',0,1.5,1); put p=; run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 12 Jun 2024 14:51:37 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2024-06-12T14:51:37Z</dc:date>
    <item>
      <title>Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931384#M46410</link>
      <description>&lt;P&gt;I am building models whose dependent variable (1) is zero-inflated (or, in the econometric literature, "limited"); (2) is continuous in nature and (3) follows a lognormal distribution in the non-zero part.&lt;/P&gt;
&lt;P&gt;I have reviewed the literature and found that a two part model maximizing a joint likelihood might be suitable. The problem is that this process does not seem to be supported by built-in procedure of SAS. So I decide to formulize the joint likelihood and let SAS maximize it and report the results.&lt;/P&gt;
&lt;P&gt;I am not going into the details of this joint likelihood, but in case someone needs to know it, I will mention it briefly. The joint likelihood concerns the product of the probability that a given sample point exceeds zero and the expected value of that sample point given that it has exceeded zero.&lt;/P&gt;
&lt;P&gt;Is there anyway I can tailor my likelihood function to maximize with built-in SAS procedures? References on this issue are also welcome.&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jun 2024 10:02:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931384#M46410</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-06-08T10:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931446#M46429</link>
      <description>&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;"Zero-inflated" response and "limited" response are not the same.&lt;/LI&gt;
&lt;LI&gt;Are you dealing with count data or continuous data (0 and above)?&lt;/LI&gt;
&lt;LI&gt;Are you talking about zero-inflated models (gamma, lognormal, Poisson, negative binomial) or are you talking about (&lt;SPAN&gt;Gaussian) mixture models?&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;I think your 2-parts are :&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;a logistic regression to P(y=0) and &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;a gamma (or log-normal) error regression with log link to E(y | y&amp;gt;0)) &lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;With PROC NLMIXED you can maximize the (log-)likelihood jointly. &lt;BR /&gt;However, it could be (will be) the likelihood separates anyway, so you don't get improved parameter estimates as a result (only advantage then is that you do it with one function call and you estimate the combined function E(y) which includes the zeroes).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Note that you can use PROC NLMIXED in the absence of random effects (only fixed effects is fine here).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;There are other ways in SAS to maximize (any tailored) likelihood beyond PROC NLMIXED.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 15:49:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931446#M46429</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2024-06-09T15:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931448#M46431</link>
      <description>&lt;P&gt;See &lt;A href="http://support.sas.com/kb/68/202.html" target="_self"&gt;this note&lt;/A&gt; which describes models you could consider for a continuous response that is zero inflated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 16:07:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931448#M46431</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-06-09T16:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931449#M46432</link>
      <description>&lt;P&gt;Thank you, Koen, for your detailed reply!&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;"Zero-inflated" response and "limited" response are not the same.&lt;/LI&gt;
&lt;LI&gt;Are you dealing with count data or continuous data (0 and above)?&lt;/LI&gt;
&lt;/UL&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The nomenclature "limited dependent variable", albeit strange and not that intuitive to me, comes from the econometric literature. For instance, I have retrieved two books (&lt;A href="https://www.cambridge.org/core/books/limiteddependent-and-qualitative-variables-in-econometrics/69B8DBC75160713AA3AD1AD979D297B8" target="_blank" rel="noopener"&gt;Limited-Dependent and Qualitative Variables in Econometrics (cambridge.org)&lt;/A&gt;&amp;nbsp;and &lt;A href="https://www.cambridge.org/core/books/analysis-of-panels-and-limited-dependent-variable-models/745CA9FA38889175AE54AD83FB952274" target="_blank" rel="noopener"&gt;Analysis of Panels and Limited Dependent Variable Models (cambridge.org)&lt;/A&gt;), skimmed through their contents and found that the so-called "limited dependent variables" are in fact sample-selected variables. On many occassions, they are zero-inflated ones as well. I averted using the term "zero-inflated" in the title to avoid people who are attracted by this pharse, come straight into this post and tell me to use PROC GENMOD to tackle this problem because PROC GENMOD can model zero-inflated count data, without noticing the fact that the variable I wish to model is&amp;nbsp;&lt;STRONG&gt;continuous&amp;nbsp;&lt;/STRONG&gt;rather than&amp;nbsp;&lt;STRONG&gt;discrete&lt;/STRONG&gt;, an issue whose solution has been given in SAS Help as well as many other literature.&lt;/P&gt;
&lt;P&gt;As I have said in the post and the paragraph above, the variable I wish to model is continuous.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;wrote:
&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;Are you talking about zero-inflated models (gamma, lognormal, Poisson, negative binomial) or are you talking about (&lt;SPAN&gt;Gaussian) mixture models?&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I am not sure the exact definition of a "lognormal zero-inflated model" as I have not yet seen this phrase in the literature on zero-inflated models that I have come across. If this model refers to a model that is capable of modeling a variable that is zero-inflated in nature and whose non-zero part follows a lognormal distribution, then that is the model I wish to build.&lt;/P&gt;
&lt;P&gt;By the way, I am not sure about the definition of&amp;nbsp;(Gaussian) mixture models. Do you mean finite mixture models whose dependent variables follow a finite mixture of (normal) distributions that can be built by PROC FMM? To the best of my knowledge, these models are not typically classified as zero-inflated models. Can they model zero-inflated data as well?&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;&lt;SPAN&gt;I think your 2-parts are :&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;a logistic regression to P(y=0) and &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;a gamma (or log-normal) error regression with log link to E(y | y&amp;gt;0)) &lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I do not think that if the link function is the natural log of the expectation of the dependent variable given that it has exceeded zero (ln&lt;EM&gt;E&lt;/EM&gt;(&lt;EM&gt;y&lt;/EM&gt;|&lt;EM&gt;y&lt;/EM&gt;&amp;gt;0)), the errors would still be log-normal. But that is a trivial issue. Aside from that, what you have outlined is exactly what I want.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;&lt;SPAN&gt;With PROC NLMIXED you can maximize the (log-)likelihood jointly. &lt;BR /&gt;However, it could be (will be) the likelihood separates anyway, so you don't get improved parameter estimates as a result (only advantage then is that you do it with one function call and you estimate the combined function E(y) which includes the zeroes).&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Thank you for your reminder! I have been reading a monograph (&lt;A href="https://www.amazon.com/Regression-Models-Truncated-Quantitative-Applications/dp/0803957106/ref=sr_1_1?crid=1KL0WDJYI51TJ&amp;amp;dib=eyJ2IjoiMSJ9.bP7OuVg2EWj7oYuW5k_UKQ.qTUNTWfM7h1kBYBWmfbToF3L_W7uyY92u0fuOwjmVMU&amp;amp;dib_tag=se&amp;amp;keywords=sample+selected+truncated&amp;amp;qid=1717906778&amp;amp;sprefix=sample+selected+truncat%2Caps%2C353&amp;amp;sr=8-1" target="_blank" rel="noopener"&gt;Regression Models: Censored, Sample Selected, or Truncated Data (Quantitative Applications in the Social Sciences): Breen, Richard: 9780803957107: Amazon.com: Books&lt;/A&gt;) on zero-inflated continuous data, which has also been termed as "sample selected data". When elaborating the way to model a zero-inflated variable whose non-zero part follows a normal distribution, the author demonstrated the inappropriateness of not maximizing the joint likelihood in that ordinary least squares estimators of the regression coefficients conducted on the non-zero portion, on the entire sample are all biased and (or) inconsistent, except in rare conditions that is, in my opinion, hard to verify with neither the data at hand nor professional knowledge. On the contrary, the estimator of the regression coefficients obtained by maximizing the joint likelihood is guaranteed to be unbiased and consistent. So I think it a safer choice.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;&lt;SPAN&gt;Note that you can use PROC NLMIXED in the absence of random effects (only fixed effects is fine here).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;There are other ways in SAS to maximize (any tailored) likelihood beyond PROC NLMIXED.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Thank you for pointing out the fact that PROC NLMIXED can be of help! Could you please provide some details on the other ways of maximizing tailored likelihood functions that you mentioned?&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 16:30:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931449#M46432</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-06-09T16:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931451#M46434</link>
      <description>&lt;P&gt;Thank you so much! The topic of this note perfectly matches my need. I will go into its details to see if this encompasses the exact modeling method I wish to apply.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 16:23:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931451#M46434</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-06-09T16:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931482#M46439</link>
      <description>&lt;P&gt;There are a long-standing questions regarding Tweedie models, as the explanation regarding Tweedie distribution in SAS Help is too hard for me to understand. Moreover, I have searched extensively on the Internet and have retrieved little information on this distribution.&lt;/P&gt;
&lt;P&gt;My questions are: are Tweedie models suitable for modeling all zero-inflated continuous variables? Moreover, are there are goodness-of-fit statistics regarding Tweedie models?&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 04:28:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931482#M46439</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-06-10T04:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931579#M46447</link>
      <description>&lt;P&gt;Yes, as stated in the note I referred to and in "Tweedie Distribution for Generalized Linear Models" in the Details section of the GENMOD documentation, the Tweedie distribution can be used for continuous response data with a mass of zero values. Unlike distributions with positive support like the gamma and log-normal, the Tweedie distribution supports zero values. I show a simple R-square-like statistic in the note for use as a goodness of fit measure and use it to compare the models presented there. The statistic is discussed further in the provided link.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 16:21:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931579#M46447</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-06-10T16:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931581#M46448</link>
      <description>Thank you! I am halfway through the reading process. I will consult you again should I have questions.</description>
      <pubDate>Mon, 10 Jun 2024 16:23:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931581#M46448</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-06-10T16:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931875#M46457</link>
      <description>&lt;P&gt;There is a note to make about using Tweedie models for zero-inflated data for friends in this Community who may not have the time I do to read &lt;A title="the note" href="https://support.sas.com/kb/68/202.html" target="_blank" rel="noopener"&gt;the note&lt;/A&gt; cited by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;thoroughly. This note informs me that a Tweedie model "never produces a predicted mean exactly equal to zero". That potentially makes it a bad tool for prediction because in reality, there are of course zero-valued observations. After all, we are modeling&amp;nbsp;&lt;STRONG&gt;zero-inflated&amp;nbsp;&lt;/STRONG&gt;data! Yet things are different if you are trying to explore the association of the dependent variable and the independent variables. I think if that is the objective, Tweedie models can be selected.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2024 10:30:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931875#M46457</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-06-12T10:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931918#M46459</link>
      <description>&lt;P&gt;Not sure I see the problem with prediction. While the distribution mean cannot be zero, individual realizations from the distribution can be zero. For instance, the PDF at zero for a Tweedie distribution with p=1.5 and mean=1 is nonzero:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_; p=pdf('tweedie',0,1.5,1); put p=; run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Jun 2024 14:51:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931918#M46459</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-06-12T14:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931921#M46461</link>
      <description>&lt;P&gt;When I was mentioning the utility of Tweedie models in prediction, my emphasis was on its predicted mean. The fact that the predicted mean cannot be zero is in conflict with the fact that the dependent variable is in fact a zero-inflated variable. The number you mentioned was the value of the probability density function of the Tweedie distribution at a given point.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2024 15:13:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931921#M46461</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-06-12T15:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931926#M46463</link>
      <description>Still not seeing the problem. A zero-inflated variable does not imply that its distribution, whatever it is, has zero mean - it just allows a mass of values at zero. A distribution with non-negative support, like the Tweedie, can't have zero mean, but maybe you want a distribution supporting the real numbers, including negative numbers, with an extra mass at zero exceeding the expectation of the distribution. You might be able to do that in PROC FMM with a degenerate distribution at zero.</description>
      <pubDate>Wed, 12 Jun 2024 15:51:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/931926#M46463</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-06-12T15:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/932076#M46465</link>
      <description>&lt;P&gt;In one word, it is usually the model predictive mean that is used for prediction.&lt;/P&gt;
&lt;P&gt;For instance, suppose we are building a model on the amount of money an insurance company pays for reimbursement. When we say we want to&amp;nbsp;&lt;STRONG&gt;predict&amp;nbsp;&lt;/STRONG&gt;this quantity, we mean that we wish to know the amount of money the insurance company reimburses given the values the predictors (i.e., independent variables) take. This usually amounts to calculating the predicted mean by the model given the value of the predictors. Now that the predictive mean of Tweedie model is always larger than zero, we, in the fictitious scenario mentioned above, will claim that the amount of reimbursement is always larger than zero, since this is what the Tweedie model tells us in terms of its predictive mean. But that is definitely not true. A lot of zeros are actually observed. That is why the data is termed as zero-inflated data.&lt;/P&gt;
&lt;P&gt;However, if the researcher is interested on the factors associated with the dependent variable rather than hoping to find out the expected mean given values of predictors, then Tweedie models can be selected. Following the scenario above, suppose we are interested in the correlation of the amount of money reimbursed and age instead of trying to figure out the amount of money the company is expected to pay given that the person's age is, say, 69. In this case, the absolute amount of the regression coefficient estimate as well as its sign (+ or -) can provide us information regarding the relationship of the amount of money reimbursed and age.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 02:06:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/932076#M46465</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-06-13T02:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/939561#M46875</link>
      <description>&lt;P&gt;This is another issue I would like to consult on. Is there any SAS solution to the very setting I mentioned in the post, except for the fact that the data were collected from complex surveys and hence statistical methods tailored for these data (like the ones offered by the SURVEYMEANS procedure) are needed?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2024 07:08:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/939561#M46875</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-08-16T07:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum likelihood estimation for limited dependent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/951199#M47555</link>
      <description>&lt;P&gt;Although not solved yet, I have made some progress on the question I raised in the original post and would like to share my findings.&lt;/P&gt;
&lt;P&gt;(1) Theoretical issues: the non-zero part of my dependent variable follows a lognormal distribution. Theoretical discussions revolving the maximum likelihood estimation of these models can be found in &lt;A href="https://www.amazon.com/Generalized-Categorical-Continuous-Statistics-Behavioral/dp/1032477466/ref=sr_1_1?crid=2K5DTII8XUMFH&amp;amp;dib=eyJ2IjoiMSJ9.l5CoetT4g7dCahFoSrfCfD7VOGwLp-VhpnPgZUJhsGw.auUUOu87xnXgWEjFFY3ToMe6b9QZM2MY1K8rS2x3-r4&amp;amp;dib_tag=se&amp;amp;keywords=Generalized+Linear+Models+for+Categorical+and+Continuous+Limited+Dependent+Variables&amp;amp;qid=1732011570&amp;amp;sprefix=generalized+linear+models+for+categorical+and+continuous+limited+dependent+variables%2Caps%2C436&amp;amp;sr=8-1" target="_blank"&gt;Amazon.com: Generalized Linear Models for Categorical and Continuous Limited Dependent Variables (Chapman &amp;amp; Hall/CRC Statistics in the Social and Behavioral Sciences): 9781032477466: Smithson, Michael, Merkle, Edgar C.: Books&lt;/A&gt;. Moreover, heteroscedasticity of limited dependent variable models is an problem I encountered and named by the authors of this book as an issue extensively discussed therein.&amp;nbsp;&lt;A href="https://www.amazon.com/Truncated-Censored-Samples-Applications-Statistics/dp/B01FIZ5I4E/ref=tmm_hrd_swatch_0?_encoding=UTF8&amp;amp;dib_tag=se&amp;amp;dib=eyJ2IjoiMSJ9.GrFYL7ljZb4xEMHFsp7yM52ONcxmllIggdOjjHqzivc.QRBx3GfJXjL3Ob1Vd62sBghG4xSYZoLjLpwqRJwWevw&amp;amp;qid=1732011778&amp;amp;sr=8-1" target="_blank"&gt;Truncated and Censored Samples: Theory and Applications (Statistics: A Series of Textbooks and Monographs) by A. Clifford Cohen (1991-05-23): A. Clifford Cohen: Amazon.com: Books&lt;/A&gt;&amp;nbsp;also contains a brief summary of maximum likelihood estimators of limited dependent variable models whose dependent variable follows a lognormal distribution.&lt;/P&gt;
&lt;P&gt;(2) Software implementation:&amp;nbsp;&lt;A href="https://www.amazon.com/Maximum-Likelihood-Estimation-Inference-Examples/dp/0470094826/ref=sr_1_1?crid=1DUBZD4APJO6I&amp;amp;dib=eyJ2IjoiMSJ9.oovqy1TyfTTWDSKIV90E9a6QRdVEinkL0NaGW3OATu7GjHj071QN20LucGBJIEps.YMukGit8PEnlwdJyt13rEp59sWN3NUCpVZ8cjmCRZvE&amp;amp;dib_tag=se&amp;amp;keywords=maximum+likelihood+admb&amp;amp;qid=1732011858&amp;amp;sprefix=maximum+likelihood+adm%2Caps%2C351&amp;amp;sr=8-1" target="_blank"&gt;Amazon.com: Maximum Likelihood Estimation and Inference: With Examples in R, SAS and ADMB: 9780470094822: Millar, Russell B.: Books&lt;/A&gt;&amp;nbsp;is a monograph on maximum likelihood estimation (MLE) with special emphasis on software implementation, including issues of conducting MLE with SAS.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 10:27:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Maximum-likelihood-estimation-for-limited-dependent-variables/m-p/951199#M47555</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-11-19T10:27:06Z</dc:date>
    </item>
  </channel>
</rss>

