name: "Bug Report" about: Submit a bug report to help us improve tidymodels
Please include a minimal reproducible example, a reprex, to demonstrate the bug. If you've never heard of a reprex before, start by reading "What is a reprex" and following the advice there. If we can't reproduce a bug, we can't fit it.
Here is a good example bug report: #46
We don't want you to use confidential data; you can use a dataset from modeldata, blind the data, or simulate other data to demonstrate your bug. The functions caret::twoClassSim()
or caret::SLC14_1()
might be good tools to simulate data for you.
Unless the problem is explicitly about parallel processing, please run sequentially. Even if it is about parallel processing, please make sure that it runs sequentially first.
Use set.seed()
to ensure any randomness in your code is reproducible.
Please check https://stackoverflow.com/ or https://community.rstudio.com/ to see if someone has already reported the same problem (see: Yihui's Rule).
You might need to install these packages to create a reproducible example or share session info:
install.packages(c("reprex", "sessioninfo"), repos = "http://cran.r-project.org")
When you are ready to file the bug 🐛 report, please delete everything above this line: < -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
I'm having trouble with ...
## copy your code to the clipboard and run:
reprex::reprex(si = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.