I'm using censornb with cross-sectional survey data. The dependent variable is a count variable that indicates the number of modes of communication an organization uses. The maximum number of modes an organization can select is 11 (i.e. the variable is right-censored at 11).
I created the censor variable cenvar_modes with the appropriate 1s and -1s.
Here is the basic model I am trying to run:
Do you know what might be causing the problems when I run censornb?
I created the censor variable cenvar_modes with the appropriate 1s and -1s.
Here is the basic model I am trying to run:
When I run the regression I get the following error message:Code:censornb num_modes revenue_log, censor(cenvar_modes)
initial: log likelihood = -<inf> (could not be evaluated)
could not find feasible valuesWhen I run the following basic nbreg model on the same data:
It runs without any errors.Code:nbreg num_modes revenue_log
Do you know what might be causing the problems when I run censornb?
Comment