find_offset | R Documentation |
Returns a character vector with the name(s) of offset terms.
find_offset(x, as_term = FALSE)
x |
A fitted model. |
as_term |
Logical, if |
A character vector with the name(s) of offset terms.
# Generate some zero-inflated data
set.seed(123)
N <- 100 # Samples
x <- runif(N, 0, 10) # Predictor
off <- rgamma(N, 3, 2) # Offset variable
yhat <- -1 + x * 0.5 + log(off) # Prediction on log scale
dat <- data.frame(y = NA, x, logOff = log(off), raw_off = off)
dat$y <- rpois(N, exp(yhat)) # Poisson process
dat$y <- ifelse(rbinom(N, 1, 0.3), 0, dat$y) # Zero-inflation process
m1 <- pscl::zeroinfl(y ~ offset(logOff) + x | 1, data = dat, dist = "poisson")
find_offset(m1)
m2 <- pscl::zeroinfl(
y ~ offset(log(raw_off)) + x | 1,
data = dat,
dist = "poisson"
)
find_offset(m2)
find_offset(m2, as_term = TRUE)
m3 <- pscl::zeroinfl(y ~ x | 1, data = dat, offset = logOff, dist = "poisson")
find_offset(m3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.