powered by
Are additional parameters available for a GAM?
has_theta(object)
A logical; TRUE if additional parameters available, FALSE
TRUE
FALSE
otherwise.
an R object, either a family() object or an object whose class has a family() method.
family()
load_mgcv() df <- data_sim("eg1", dist = "poisson", seed = 42, scale = 1 / 5) m <- gam(y ~ s(x0) + s(x1) + s(x2) + s(x3), data = df, method = "REML", family = nb() ) has_theta(m) p <- theta(m)
Run the code above in your browser using DataLab