Skip to content

Commit addea84

Browse files
committed
closes #214
1 parent 4cf261d commit addea84

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

issue_template.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
name: Bug report or feature request
3+
about: Describe a bug you've seen or make a case for a new feature
4+
---
5+
6+
# PLEASE READ: Making a new issue for `parsnip`
7+
8+
9+
Please follow the template below.
10+
11+
If the question is related at all to a specific data analysis, please include a **minimal reprex** (reproducible example). If you've never heard of a reprex before, start by reading "[What is a reprex](https://github.com/tidyverse/reprex#what-is-a-reprex)", and follow the advice further down that page.
12+
13+
Tips:
14+
15+
* Here is a good example issue: [#139](https://github.com/tidymodels/parsnip/issues/139#issue-404108897)
16+
17+
* **Issues without a reprex will have a lower priority than the others.**
18+
19+
* We don't want you to use confidential data; you can blind the data or simulate other data to demonstrate the issue. The functions [`caret::twoClassSim()`](https://www.rdocumentation.org/packages/caret/versions/6.0-84/topics/SLC14_1) or [`caret::SLC14_1()`](https://www.rdocumentation.org/packages/caret/versions/6.0-84/topics/SLC14_1) might be good tools to simulate data for you.
20+
21+
* Unless the problem is explicitly about parallel processing, please run sequentially.
22+
23+
* Even if it about parallel processing, please make sure that it runs sequentially first.
24+
25+
* Please use `set.seed()` to ensure any randomness in your code is reproducible.
26+
27+
* Please check <https://stackoverflow.com/> or <https://community.rstudio.com/> to see if someone has already asked the same question (see: [Yihui's Rule](https://yihui.name/en/2017/08/so-gh-email/)).
28+
29+
* You might need to install these:
30+
31+
```r
32+
install.packages(c("reprex", "sessioninfo"), repos = "http://cran.r-project.org")
33+
```
34+
35+
<br>
36+
37+
When are ready to file the issue, please delete the parts above this line:
38+
< -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
39+
40+
## The problem
41+
42+
I'm having trouble with ... or
43+
44+
Have you considered ...
45+
46+
## Reproducible example
47+
48+
Copy your code to the clipboard and run:
49+
50+
```r
51+
reprex::reprex(si = TRUE)
52+
```

0 commit comments

Comments
 (0)