Hi All,
I am using -meglm- with binomial family and logit link to estimate the probability of job vacancies being filled at company level. Several explanatory variables are included at firm and regional level.
The simplified form of the estimation equation is as follows:
I am concerned that the chosen model does not fit the structure of the dependent variable, which represents the number of filled positions divided by the number of offered positions. It therefore takes on values in the interval [0;1], with the values 0 and 1 accounting for almost half of all observations.
My question: Does this model make sense in the context of the structure of the dependent variable, or would another model specification be more suitable?
I also modeled the dependent variable as binomial by specifying it as the number of successes (positions_filled) from a series of binomial trials (positions_offered).
For these cases meqrlogit and melogit were used:
Unfortunately for both melogit and meqrlogit, the error ‘initial values not feasible’ occurred.
Thank you in advance for your helpful answers!
I am using -meglm- with binomial family and logit link to estimate the probability of job vacancies being filled at company level. Several explanatory variables are included at firm and regional level.
The simplified form of the estimation equation is as follows:
Code:
meglm share_positions_filled independent_variables|| region: || company_id:, family(binomial) link(logit)
My question: Does this model make sense in the context of the structure of the dependent variable, or would another model specification be more suitable?
I also modeled the dependent variable as binomial by specifying it as the number of successes (positions_filled) from a series of binomial trials (positions_offered).
For these cases meqrlogit and melogit were used:
Code:
me(qr)logit positions_filled_total independent_variables || region: || company_id:, binomial(positions_offered)
Thank you in advance for your helpful answers!
Comment