-
Notifications
You must be signed in to change notification settings - Fork 14
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
Sparse data modeling using a Matrix #80
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for tidymodels-org ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love how you've scoped this. Leaving review as comment so I can take another look through with more of an eye for content than grammar.
Co-authored-by: Simon P. Couch <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Huzzah!
wf_final <- finalize_workflow( | ||
wf_spec, | ||
select_best(tune_res, metric = "roc_auc") | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wf_final <- finalize_workflow( | |
wf_spec, | |
select_best(tune_res, metric = "roc_auc") | |
) | |
wf_final <- finalize_workflow( | |
wf_spec, | |
select_best(tune_res, metric = "roc_auc") | |
) |
#> date 2024-10-14 | ||
#> pandoc 2.17.1.1 @ /opt/homebrew/bin/ (via rmarkdown) | ||
#> | ||
#> ─ Packages ───────────────────────────────────────────────────────── |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lots of dev versions and remotes here. Fine for now, but a TODO for once these are sent out to CRAN. :)
This PR goes hand in hand with #79
it is the second article about sparse data in tidymodels.
It showcases a simple analysis where we use a sparse matrix in a modeling context by turning it into a sparse tibble.