-
-
Notifications
You must be signed in to change notification settings - Fork 70
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
Reporting on tidymodels #122
Comments
Not sure how others see this, but for me personally the tidymodels framework is of rather low priority. Currently, there's no explicit support for tidymodels, however, this might change quite quickly. |
@mbac supporting tidymodels in report would require adding its support in the other easystats packages, i.e., insight, parameters, performance and effectsize, which is not the case currently. That said, this is something we will probably want to add (as our goal is to have quite an extensive coverage of the R ecosystem) at some point, though I cannot give you any timeline |
tidymodels is now supported in insight, parameters and performance. |
Thank you very much for taking care of this! |
@mattansb is it much effort to implement in effectsize? |
No idea. Aren't most tidymodels' models non-parametric? (I have never used tidymodels before, only caret). Anyway, if someone can open an issue over at |
tidymodels returns an object of class foo.model_fit <- function(x, ...) {
foo(x$fit, ...)
} |
tidymodels is just a more complicated way of fitting models in R. ;-) |
It seems recently that |
Question and context
Hi,
I've been using a
tidymodels
approach to perform a logistic regression. Theglm
model is stored in various objects, including the top-levelworkflow
. This has some extractor functions which return a model (e.g.:pull_workflow_spec()
), butreport
says it can't work with it. The workflow-model'sclass()
is[_glm, model_fit]
.Is there a way to use
report
directly on atidymodels
- (orparsnip
-) generated model?Thanks!
The text was updated successfully, but these errors were encountered: