Indicate the type of coefficient among "generic", "logistic", "poisson", "relative_risk" or "prop_hazard".

model_get_coefficients_type(model)

# S3 method for default
model_get_coefficients_type(model)

# S3 method for glm
model_get_coefficients_type(model)

# S3 method for negbin
model_get_coefficients_type(model)

# S3 method for geeglm
model_get_coefficients_type(model)

# S3 method for fixest
model_get_coefficients_type(model)

# S3 method for biglm
model_get_coefficients_type(model)

# S3 method for glmerMod
model_get_coefficients_type(model)

# S3 method for clogit
model_get_coefficients_type(model)

# S3 method for polr
model_get_coefficients_type(model)

# S3 method for multinom
model_get_coefficients_type(model)

# S3 method for svyolr
model_get_coefficients_type(model)

# S3 method for clm
model_get_coefficients_type(model)

# S3 method for clmm
model_get_coefficients_type(model)

# S3 method for coxph
model_get_coefficients_type(model)

# S3 method for crr
model_get_coefficients_type(model)

# S3 method for tidycrr
model_get_coefficients_type(model)

# S3 method for cch
model_get_coefficients_type(model)

# S3 method for model_fit
model_get_coefficients_type(model)

# S3 method for LORgee
model_get_coefficients_type(model)

Arguments

model

a model object

Examples

lm(hp ~ mpg + factor(cyl), mtcars) %>%
  model_get_coefficients_type()
#> [1] "generic"

Titanic %>%
  dplyr::as_tibble() %>%
  dplyr::mutate(Survived = factor(Survived, c("No", "Yes"))) %>%
  glm(Survived ~ Class + Age * Sex, data = ., weights = .$n, family = binomial) %>%
  model_get_coefficients_type()
#> [1] "logistic"