Maybe i dont have things quit clear in my head. For example in the first specification of
, by doing
the value that i will get for RD_ratio_lagged will show me the average change in Loan_ratio for a unit change in RD_ratio_lagged, regardless of whether negative rates are active or no. It does not show me the difference in the average marginal effect between NIRP=0 and NIRP=1, correct? And if i want to know what is the difference in the average effect for a unit change in RD_ratio_lagged between the periods of positive and negative ratesi believe i should use either
or
? I hope i make any sense
In general i would like to compare how a change in RD_ratio_lagged affects Loan_ratio before and after NIRP and how NIRP affects loan ratio too
And later to compare how a change in RD_ratio_lagged affects Loan_ratio before and after NIRP for different bank groups
Code:
xtreg Loan_ratio Loan_ratio_lagged c.RD_ratio_lagged##i.NIRP , fe robust
Code:
margins, dydx(RD_ratio_lagged NIRP)
Code:
margins NIRP, dydx(RD_ratio_lagged)
Code:
margins, over(NIRP) dydx(RD_ratio_lagged)
In general i would like to compare how a change in RD_ratio_lagged affects Loan_ratio before and after NIRP and how NIRP affects loan ratio too
And later to compare how a change in RD_ratio_lagged affects Loan_ratio before and after NIRP for different bank groups
Comment