I am working on a fractional response model where the outcome, y, is a fraction and the predictor, x, is a fraction as well. Both variables mainly have values <.1. Ideally, I want to apply margins to get the percentage point increase in the response, given a one percentage point increase in the predictor. Realistically, I know margins will provide an approximation to a change in y given a one unit change as x is not discrete. My code is:
As far as I know, dydx(*) gives the change in percentage point while dyex(*) gives the change in percentage (see e.g., this Stata post). However, this example of fracreg seem to be interpreting dyex as a percentage point change. Which one is correct?
In my case, the mean response value is low, at around .02. What puzzles me is that dydx gives a *considerably* higher estimate than dyex. While dydx provide a value of .3, dyex gives a value of .01. An increase of 30 percentage points would hardly make sense, while a 1 percentage point increase is sensible. Moreover, graphical inspections of the variables does not seem to support the large percentage point change implied by dydx. Intuitively, I would expect an absolute change in percentage points to be lower than a relative percent change, at least in the data I am working with.
I have spent quite some time looking at Stata documentation and googling without a confident conclusion on dydx and dyex, so any input on interpretation would be appreciated.
Code:
fracreg probit y x margins, dyex(*) margins, dydx(*)
In my case, the mean response value is low, at around .02. What puzzles me is that dydx gives a *considerably* higher estimate than dyex. While dydx provide a value of .3, dyex gives a value of .01. An increase of 30 percentage points would hardly make sense, while a 1 percentage point increase is sensible. Moreover, graphical inspections of the variables does not seem to support the large percentage point change implied by dydx. Intuitively, I would expect an absolute change in percentage points to be lower than a relative percent change, at least in the data I am working with.
I have spent quite some time looking at Stata documentation and googling without a confident conclusion on dydx and dyex, so any input on interpretation would be appreciated.
Comment