|
| 1 | +--- |
| 2 | +name: Bug report |
| 3 | +about: Report something that is not working as expected. |
| 4 | +title: '' |
| 5 | +labels: bug |
| 6 | +assignees: '' |
| 7 | +--- |
| 8 | + |
| 9 | +## What happened? |
| 10 | + |
| 11 | +Describe what went wrong. Be as specific as you can. |
| 12 | + |
| 13 | +## Which function were you using? |
| 14 | + |
| 15 | +For example: `bgm()`, `bgmCompare()`, `simulate_mrf()`, `predict()`, or one |
| 16 | +of the extractor functions. |
| 17 | + |
| 18 | +## Minimal example |
| 19 | + |
| 20 | +If you can, paste a short R script that reproduces the problem. Starting from |
| 21 | +one of the built-in datasets (`Wenchuan`, `Boredom`, `ADHD`) or simulated data |
| 22 | +makes it easier for us to investigate. |
| 23 | + |
| 24 | +```r |
| 25 | +library(bgms) |
| 26 | + |
| 27 | +# your code here |
| 28 | +``` |
| 29 | + |
| 30 | +If the problem only occurs with your own data and you cannot share it, that is |
| 31 | +fine — describe the data instead: number of variables, number of observations, |
| 32 | +variable types (binary, ordinal, continuous), and any special characteristics |
| 33 | +such as missing values or low-frequency categories. |
| 34 | + |
| 35 | +If the code produces an error message, paste the full message below. |
| 36 | + |
| 37 | +``` |
| 38 | +# error output here |
| 39 | +``` |
| 40 | + |
| 41 | +## What did you expect to happen? |
| 42 | + |
| 43 | +Describe the result you expected instead. |
| 44 | + |
| 45 | +## Session information |
| 46 | + |
| 47 | +Paste the output of `sessionInfo()` below. This tells us your R version, |
| 48 | +operating system, and which packages are loaded — all of which help us |
| 49 | +reproduce the problem. |
| 50 | + |
| 51 | +To get this, run the following in your R console and copy the output: |
| 52 | + |
| 53 | +```r |
| 54 | +sessionInfo() |
| 55 | +``` |
| 56 | + |
| 57 | +``` |
| 58 | +# paste sessionInfo() output here |
| 59 | +``` |
| 60 | + |
| 61 | +## Anything else? |
| 62 | + |
| 63 | +Add any other context that might help: screenshots, related issues, or |
| 64 | +links to documentation. |
0 commit comments