I'm trying estimate a logit data panel using a between and within model. However is occurring the follow error:
Error during wrapup: argument "start" is missing, with no default Error: no more error handlers available (recursive errors?); invoking 'abort' restart
below, follow the code:
Logit_between <- pglm(Treat ~ Size_win + ROE_win + Age_win + IndCAdm_win + Lev_win + factor(Prej) + factor(Constr) + factor(CC) + factor(TI)+ factor(Telec)+ factor(UP), family = binomial('logit'), model = 'between', data=Base_PAS_Final, index = c("Id", "Year"), start=NULL, method = "bfgs", print. Level = 3, R = 5)
Treated = Dummy variable (1 for the companies that suffered lawsuits, 0 no suffered) Size, ROE, Age,IndCAdm and Levarage are continuous variables.
Constr, CC, TI, Telec, and UP are dummies that control the industry effect.
Anyone had this problem or can help me about it?