hi
I am working on two regressions and would like to learn the proper way to present economic significance (not only statistical significance) for both models.
I would like to ask how to present economic significance in Stata using code for the following two models.
(1) Probit
My understanding is that the marginal effects from margins, dydx(*) can be interpreted as the change in probability (in percentage points) associated with a one-unit change in each regressor, holding others constant.
Is this the correct way to interpret and report economic significance for a Probit model?
(2). OLS model
For OLS, should economic significance be presented simply by interpreting the coefficient magnitudes, or is there a Stata command (e.g. margins, lincom, or beta) that can be used to compute and report economic significant ?
Any examples or best practices on how to code and present economic significance directly in Stata would be greatly appreciated.
I am working on two regressions and would like to learn the proper way to present economic significance (not only statistical significance) for both models.
I would like to ask how to present economic significance in Stata using code for the following two models.
(1) Probit
HTML Code:
probit hard_final_Exact_new csopresence1 Firm_Size_w ROA_w Leverage_w Market_book_four_w ///
Non_pension_CFO_w STD_CFO_w board_size_w female_percentage_w independent_percentage_w ///
SUSTAIBILITY_COMTEE_FU Fund_Status_w FUNDING_RATIO_w Platn_Size_w i.year i.ff_12, robust cluster(id)
margins, dydx(*)
Is this the correct way to interpret and report economic significance for a Probit model?
(2). OLS model
HTML Code:
reg csr_w hard_final_Exact_new csopresence1 Firm_Size_w ROA_w Leverage_w Market_book_four_w ///
Non_pension_CFO_w STD_CFO_w board_size_w female_percentage_w independent_percentage_w ///
SUSTAIBILITY_COMTEE_FU Fund_Status_w FUNDING_RATIO_w Platn_Size_w i.year i.ff_12, robust cluster(id)
Any examples or best practices on how to code and present economic significance directly in Stata would be greatly appreciated.

Comment