Tidying methods for "gamlss" objects from the gamlss package.
# S3 method for gamlss
tidy(x, quick = FALSE, ...)
A "gamlss" object
Whether to perform a fast version, and return only the coefficients
Extra arguments (not used)
All tidying methods return a data.frame without rownames, whose structure depends on the method chosen.
A data.frame with one row for each coefficient, containing columns
Type of coefficient being estimated: mu
, sigma
,
nu
, or tau
The term in the model being estimated and tested
The estimated coefficient
The standard error from the linear model
t-statistic
two-sided p-value
if (requireNamespace("gamlss", quietly = TRUE)) data(abdom) mod<-gamlss(y~pb(x),sigma.fo=~pb(x),family=BCT, data=abdom, method=mixed(1,20)) tidy(mod)