lqm.counts(formula, data, weights = NULL, offset = NULL, contrasts = NULL,
alpha = 0.5, M = 50, zeta = 1e-05, B = 0.999, cn = NULL)formula: a symbolic description of the model to be fitted.contrasts.arg of model.matrix.default.F.lqm (see Reference).n <- 100
x <- runif(n)
data <- data.frame(x = x, y = rpois(n, 2*x))
lqm.counts(y ~ x, data = data, M = 20)Run the code above in your browser using DataLab