Hello, I am using the khb command to perform a decompostion. It is a user-written command that is discussed in detail here:
Kohler, U., Karlson, K. B., & Holm, A. (2011). Comparing coefficients of nested nonlinear probability models. The Stata Journal, 11(3), 420-438.
I ran the following code:
The results look as follows:
My question is about the P_Reduced column, which represents the proportion of the total effect of X explained by each mediator (i.e., var1, var2, and var3). What does it mean when the proportion of the total effect explained exceeds 100? How does one explain these numbers to readers?
Ulrich Kohler, would you be able to provide some insight? I would greatly appreciate it!
Kohler, U., Karlson, K. B., & Holm, A. (2011). Comparing coefficients of nested nonlinear probability models. The Stata Journal, 11(3), 420-438.
I ran the following code:
Code:
khb reg y x || var1 var2 var3, vce(cluster id) c($controls) disentangle notable
Z-variable | Coef | Std_Err | P_Diff | P_Reduced |
X | ||||
var1 | 0.0199 | 0.0067 | 35.95 | 923.42 |
var2 | 0.0256 | 0.0051 | 46.45 | 1193.11 |
var3 | 0.0097 | 0.0042 | 17.60 | 452.19 |
Ulrich Kohler, would you be able to provide some insight? I would greatly appreciate it!
Comment