Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • multinomial logistic - interpreting the economic effects

    Hello statalist
    When I replicate this paper, "Corporate cash shortfalls and financing decisions.", I encounter the issue with the term "Economic Effect" of the multinomial logistics model.

    Table 6, see the green highlight.
    Click image for larger version

Name:	Screenshot 2022-10-24 012020.png
Views:	1
Size:	274.8 KB
ID:	1686507


    My question is:
    1. What is the economic effect of logistics regression? Is the same as marginal effect?
    2. How to get this in Stata? (I successfully got mlogit coefficients, but I got stuck with the economic effect that the authors show in the paper)

    Thank you





  • #2
    Truong:
    why not emailing authors directly?
    Kind regards,
    Carlo
    (Stata 19.0)

    Comment


    • #3
      Carlo Lazzaro : I did 3 weeks ago but still no reply from them

      Comment


      • #4
        Truong Quoc Phan

        (1) Sounds like this is the average marginal effect of changing the value of x from an initial level, which is its observed value minus one standard deviation, to a new level, which is its observed value plus one standard deviation. To evaluate this average marginal effect, you'll first have to calculate the standard deviation of x in the usual manner (e.g., -summarize-). Then, for each observation, you calculate the predicted probabilities at the two different levels of x, keeping other independent variables at their observed values, and take the difference between the two probabilities. The average marginal effect is the average of these differences.

        (2) I'm not familiar enough with the -margins- command to tell whether one can use this command for (1). But I'm aware that if you're ready to apply some elbow grease, you'll be able to calculate this using -predictnl- and obtain relevant standard errors. For example, suppose that you're estimating a trinomial model with three outcomes Red, Blue, and Green (omitted category). Suppose further that your variable x has a standard deviation of 2 and you're interested in the "economic effect" of x on the probability of Red. Then, your command line will look something like:
        Code:
        predictnl MEx_coef = exp(xb(Red) + _b[Red:x] * 2) / (1 + exp(xb(Red) + _b[Red:x] * 2) + exp(xb(Blue) + _b[Blue:x] * 2)) - ///
                                          exp(xb(Red) - _b[Red:age] * 2) / (1 + exp(xb(Red) - _b[Red:x] * 2) + exp(xb(Blue) - _b[Blue:x] * 2)), se(MEx_SE)
        summarize MEx_coef MEx_SE

        Comment


        • #5
          Hong Il Yoo : thank you so much

          Comment

          Working...
          X