Hello everyone,
I have some trouble interpreting my xtlogit results in Stata 13.0. The xtlogit regression looks as follows:
Turnover_observation = equals one when there is a turnover observation, equals zero when there is no turnover observation
Investment_return = benchmark-adjusted investment return
Board_size = number of board members
Tenure = amount of years employed
Funding ratio = assets/discounted value of liabilities
Assets = natural logarithm of the amount of assets under management
My question concerns the interaction between investment return and board size. I want to interpret the odds ratio of the interation term as the ratio by which the odds ratio of investment return changes when one member is added to the board. Do I achieve this by running the regression listed above? And if so, will I be able to get the marginal effect of a one-unit change in board size on the predicted probability of a turnover with respect to the investment returns?
I am in doubt, since board size actually is a discrete variable and I should therefore use i.board_size. However, in that case Stata returns the odds ratio of the interaction term per specified board size.
Thanks in advance.
Best,
Wessel
I have some trouble interpreting my xtlogit results in Stata 13.0. The xtlogit regression looks as follows:
Code:
xtlogit turnover_observation c.investment_return##c.board_size tenure fundingratio assets/// if interim==0, or nolog
Investment_return = benchmark-adjusted investment return
Board_size = number of board members
Tenure = amount of years employed
Funding ratio = assets/discounted value of liabilities
Assets = natural logarithm of the amount of assets under management
My question concerns the interaction between investment return and board size. I want to interpret the odds ratio of the interation term as the ratio by which the odds ratio of investment return changes when one member is added to the board. Do I achieve this by running the regression listed above? And if so, will I be able to get the marginal effect of a one-unit change in board size on the predicted probability of a turnover with respect to the investment returns?
I am in doubt, since board size actually is a discrete variable and I should therefore use i.board_size. However, in that case Stata returns the odds ratio of the interaction term per specified board size.
Thanks in advance.
Best,
Wessel
Comment