| learner_glm | R Documentation |
Constructs a learner class object for fitting generalized
linear models with stats::glm and MASS::glm.nb. Negative binomial
regression is supported with family = "nb" (or alternatively family = "negbin").
learner_glm(
formula,
info = "glm",
family = gaussian(),
learner.args = NULL,
...
)
formula |
(formula) Formula specifying response and design matrix. |
info |
(character) Optional information to describe the instantiated learner object. |
family |
a description of the error distribution and link
function to be used in the model. For |
learner.args |
(list) Additional arguments to learner$new(). |
... |
Additional arguments to stats::glm or MASS::glm.nb. |
learner object.
n <- 5e2
x <- rnorm(n)
w <- 50 + rexp(n, rate = 1 / 5)
y <- rpois(n, exp(2 + 0.5 * x + log(w)) * rgamma(n, 1 / 2, 1 / 2))
d0 <- data.frame(y, x, w)
lr <- learner_glm(y ~ x) # linear Gaussian model
lr$estimate(d0)
coef(lr$fit)
# negative binomial regression model with offset (using MASS::glm.nb)
lr <- learner_glm(y ~ x + offset(log(w)), family = "nb")
lr$estimate(d0)
coef(lr$fit)
lr$predict(data.frame(x = 1, w = c(1, 5))) # response scale
lr$predict(data.frame(x = 1, w = c(1, 5)), type = "link") # link scale
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.