a character vector containing the variable names where the marginal effect
refers to the impact of a discrete change on the outcome. For example, a factor variable.
call
the matched call.
Details
If both robust=TRUE and !is.null(clustervar1) the function overrides the robust
command and computes clustered standard errors.
# NOT RUN {# simulate some dataset.seed(12345)
n = 1000x = rnorm(n)
y = rnegbin(n, mu = exp(1 + 0.5 * x), theta = 0.5)
data = data.frame(y,x)
poissonmfx(formula=y~x,data=data)
# }