Hello all,
I am trying to run a fixed effects regression on a binary dependant variable on an unbalanced panel set of 173,000 observations and 301 groups. This results in the following error:
xtstet id
. xtlogit Overdue30 SALES_REV_TURN CF_FREE_CASH_FLOW BS_TOT_ASSET PROF_MARGIN EBITDA RET
> URN_ON_ASSET RETURN_ON_INV_CAPITAL CUR_RATIO CASH_RATIO TOT_DEBT_TO_TOT_ASSET TOT_DEBT
> _TO_TOT_EQY SHORT_AND_LONG_TERM_DEBT Num_Execs age avg_board_tenure quarterend, fe
note: multiple positive outcomes within groups encountered.
note: 57 groups (825 obs) dropped because of all positive or
all negative outcomes.
note: Num_Execs omitted because of no within-group variance.
note: avg_board_tenure omitted because of no within-group variance.
5,971 (group size) take 727 (# positives) combinations results in numeric overflow;
computations cannot proceed
r(1400);
So far I have tried to use a clogit, group(id) with the same result.
I have also tries a regular logit regression including i.id, however as I am using the AIC for model specification I do not want these extra 300 variables included. I imagine these will skew the AIC and result in suboptimal model specification.
What can I do to solve this?
Any help would be much appreciated!
Thanks,
KAyleigh
I am trying to run a fixed effects regression on a binary dependant variable on an unbalanced panel set of 173,000 observations and 301 groups. This results in the following error:
xtstet id
. xtlogit Overdue30 SALES_REV_TURN CF_FREE_CASH_FLOW BS_TOT_ASSET PROF_MARGIN EBITDA RET
> URN_ON_ASSET RETURN_ON_INV_CAPITAL CUR_RATIO CASH_RATIO TOT_DEBT_TO_TOT_ASSET TOT_DEBT
> _TO_TOT_EQY SHORT_AND_LONG_TERM_DEBT Num_Execs age avg_board_tenure quarterend, fe
note: multiple positive outcomes within groups encountered.
note: 57 groups (825 obs) dropped because of all positive or
all negative outcomes.
note: Num_Execs omitted because of no within-group variance.
note: avg_board_tenure omitted because of no within-group variance.
5,971 (group size) take 727 (# positives) combinations results in numeric overflow;
computations cannot proceed
r(1400);
So far I have tried to use a clogit, group(id) with the same result.
I have also tries a regular logit regression including i.id, however as I am using the AIC for model specification I do not want these extra 300 variables included. I imagine these will skew the AIC and result in suboptimal model specification.
What can I do to solve this?
Any help would be much appreciated!
Thanks,
KAyleigh
Comment