performance icon indicating copy to clipboard operation
performance copied to clipboard

Add / Expand support for `gamlss` package

Open mattansb opened this issue 2 years ago • 0 comments

I’ve used your ‘performance’ package to examine LM and GLM models and it’s just superb.

I wonder if you reckon your package could be extended to include GAMLSS models (if you are unaware of these models, please check this review and this overview).

Received via email


This might be hard to do due to the huge number of supported families...

From example("gamlss"):

library(gamlss)

data(abdom)

mod <- gamlss(y ~ pb(x),
  sigma.fo =  ~ pb(x),
  family = BCT(),
  data = abdom
)

performance::check_model(mod)
#> Homogeneity of variance could not be computed. Cannot extract residual variance from objects of class 'gamlss'.
#> Error: `check_model()` not implemented for models of class `gamlss` yet.

I have very little experience with this package, but I recall that the vcov is a bit wonky...

mattansb avatar Nov 02 '22 06:11 mattansb