Hi all,
I have a problem with using an interaction term in my Logit regression about likelihood of merging with another company. My dependent variable is status, which is binary and equals 1 if merging with a company. My main independent variable is overconfident_fraction_2 which a continuous variable and measures the fraction of overconfident board members, and an interaction term between log_average_funds which is the log of average funds in the market.
When using the interaction term, my the coefficients and p-values of my variables change (which I understand). What I don't understand is why the coefficient doesn't make sense anymore when using the interaction term. A logit coefficient of > 18 is very strange. I think it is because there is very low variation in my main dependent variable (many zero's). Another reasons could be because my code is not correct.
Results without interaction term:
Results with interaction term:
Does someone know if the regression input is correct? I tried a lot but it doesn't make sense to my why I get these results. Thanks in advance!
Frans.
I have a problem with using an interaction term in my Logit regression about likelihood of merging with another company. My dependent variable is status, which is binary and equals 1 if merging with a company. My main independent variable is overconfident_fraction_2 which a continuous variable and measures the fraction of overconfident board members, and an interaction term between log_average_funds which is the log of average funds in the market.
When using the interaction term, my the coefficients and p-values of my variables change (which I understand). What I don't understand is why the coefficient doesn't make sense anymore when using the interaction term. A logit coefficient of > 18 is very strange. I think it is because there is very low variation in my main dependent variable (many zero's). Another reasons could be because my code is not correct.
Results without interaction term:
Code:
. logit status overconfident_fraction_2 experience_board experience_ma log_ipo_proceeds extension_10 board_size age_average female_fracti > on independent_fraction sp500_return, vce(robust) Iteration 0: Log pseudolikelihood = -356.75232 Iteration 1: Log pseudolikelihood = -297.41706 Iteration 2: Log pseudolikelihood = -297.06963 Iteration 3: Log pseudolikelihood = -297.06916 Iteration 4: Log pseudolikelihood = -297.06916 Logistic regression Number of obs = 515 Wald chi2(10) = 99.13 Prob > chi2 = 0.0000 Log pseudolikelihood = -297.06916 Pseudo R2 = 0.1673 ------------------------------------------------------------------------------------------ | Robust status | Coefficient std. err. z P>|z| [95% conf. interval] -------------------------+---------------------------------------------------------------- overconfident_fraction_2 | -.4519196 .5221312 -0.87 0.387 -1.475278 .5714388 experience_board | -.0783938 .0594812 -1.32 0.188 -.1949748 .0381873 experience_ma | -.3820718 .3776104 -1.01 0.312 -1.122175 .358031 log_ipo_proceeds | -.4250393 .1943061 -2.19 0.029 -.8058723 -.0442064 extension_10 | -1.829247 .2138418 -8.55 0.000 -2.248369 -1.410125 board_size | -.0094118 .0626586 -0.15 0.881 -.1322204 .1133967 age_average | .0244761 .0175046 1.40 0.162 -.0098322 .0587844 female_fraction | -1.965913 .6856968 -2.87 0.004 -3.309854 -.6219715 independent_fraction | -.8229314 .8706645 -0.95 0.345 -2.529402 .8835396 sp500_return | -4.699021 1.935518 -2.43 0.015 -8.492567 -.9054748 _cons | 8.946737 3.930293 2.28 0.023 1.243504 16.64997 ------------------------------------------------------------------------------------------
Code:
. logit status c.overconfident_fraction_2##c.log_average_funds experience_board experience_ma log_ipo_proceeds extension_10 board_size ag > e_average female_fraction independent_fraction sp500_return, vce(robust) Iteration 0: Log pseudolikelihood = -356.75232 Iteration 1: Log pseudolikelihood = -244.78594 Iteration 2: Log pseudolikelihood = -231.96174 Iteration 3: Log pseudolikelihood = -229.53523 Iteration 4: Log pseudolikelihood = -229.4964 Iteration 5: Log pseudolikelihood = -229.49638 Logistic regression Number of obs = 515 Wald chi2(12) = 113.33 Prob > chi2 = 0.0000 Log pseudolikelihood = -229.49638 Pseudo R2 = 0.3567 ---------------------------------------------------------------------------------------------------------------- | Robust status | Coefficient std. err. z P>|z| [95% conf. interval] -----------------------------------------------+---------------------------------------------------------------- overconfident_fraction_2 | 18.59992 44.3388 0.42 0.675 -68.30253 105.5024 log_average_funds | -4.536145 .7628865 -5.95 0.000 -6.031375 -3.040915 | c.overconfident_fraction_2#c.log_average_funds | -1.601408 3.735983 -0.43 0.668 -8.923799 5.720983 | experience_board | -.0402631 .0675773 -0.60 0.551 -.1727122 .092186 experience_ma | -.8213843 .4725425 -1.74 0.082 -1.747551 .104782 log_ipo_proceeds | -.7607499 .2479405 -3.07 0.002 -1.246704 -.2747955 extension_10 | -1.67068 .2538525 -6.58 0.000 -2.168222 -1.173139 board_size | .0048564 .0732874 0.07 0.947 -.1387842 .148497 age_average | -.0184036 .0199891 -0.92 0.357 -.0575815 .0207742 female_fraction | -1.556685 .7843938 -1.98 0.047 -3.094069 -.0193016 independent_fraction | -.7134018 .9685569 -0.74 0.461 -2.611738 1.184935 sp500_return | -3.38591 2.506107 -1.35 0.177 -8.29779 1.525969 _cons | 70.77365 10.37074 6.82 0.000 50.44737 91.09993 ----------------------------------------------------------------------------------------------------------------
Frans.
Comment