powered by
Estimate a Probit model with random effects
ProbitRE(formula, id, data = NULL, delta = 1, max_delta = 3, method = "BFGS", lower = NULL, upper = NULL, H = 20, accu = 10, reltol = 1e-08, verbose = 0, tol_gtHg = Inf)
A list containing the results of the estimated model
Formula of the model
A vector that represents the identity of individuals, numeric or character
Input data, a data frame
Variance of random effects on the individual level for ProbitRE
Largest allowed initial delta
Searching algorithm, don't change default unless you know what you are doing
Lower bound for estiamtes
Upper bound for estimates
A vector of length 2, specifying the number of points for inner and outer Quadratures
L-BFGS-B only, 1e12 for low accuracy; 1e7 for moderate accuracy; 10.0 for extremely high accuracy. See optim
Relative convergence tolerance. default typically 1e-8
Level of output during estimation. Lowest is 0.
tolerance on gtHg, not informative for L-BFGS-B
Other PanelCount: CRE_SS; CRE; PLN_RE; PoissonRE
CRE_SS
CRE
PLN_RE
PoissonRE
# \donttest{ data(rt) est = ProbitRE(isRetweet~fans+tweets+as.factor(tweet.id), id=rt$user.id, data=rt) # }
Run the code above in your browser using DataLab