-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support models of class gamm
#385
Labels
feature idea 🔥
New feature or request
Comments
Hello, it seems that models of class library(mgcv)
#> Le chargement a nécessité le package : nlme
#> This is mgcv 1.9-0. For overview type 'help("mgcv-package")'.
packageVersion("performance")
#> [1] '0.10.4'
packageVersion("report")
#> [1] '0.5.7.10'
# from mgcv::gamm
set.seed(0)
dat <- gamSim(1,n=200,scale=2)
#> Gu & Wahba 4 term additive model
model <- gamm(y~s(x0)+s(x1)+s(x2)+s(x3),data=dat)
performance::performance(model)
#> Warning in nobs.default(object, use.fallback = use.fallback): pas de méthode
#> 'nobs' disponible
#> # Indices of model performance
#>
#> AIC | BIC | R2 | RMSE | Sigma
#> -----------------------------------------
#> 891.170 | 940.654 | 0.707 | 2.083 | 2.115
report::report_performance(model)
#> Error: Oops, objects of class [gamm, list] are not supported (yet) by report_performance() :(
#>
#> Want to help? Check out https://easystats.github.io/report/articles/new_models.html Therefore I move this issue to the |
Many thanks Etienne, and sorry for the unexplicit title. It was just my frustration speaking. Great work! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in model_dashboard: Regression model summary from {easystats}, model fit and textual summary:
`Oops, objects of class [gamm, list] are not supported (yet) by report_performance() :(
The text was updated successfully, but these errors were encountered: