You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For classification problems, an error is thrown if the outcome is not a factor:
```
Error: For classification models, the outcome should be a factor.
```
There are a lot of travis related changes too:
* To get travis to run tests, the modeling packages have to be formal dependencies so a bunch were added to Suggests. This _may_ be temporary; I may decide to remove these for the version sent to CRAN. `rstanarm` was excluded because compiling it (and its dependencies) exceeded the time allowed by travis.
* A variety of changes were made to the tests related to r-devel. It looks like any function directly accessed in the tests now need to be formal dependencies (not the case before). There is still some weirdness about this though and I've attributed it to being _devel_. Hopefully this will get smoothed out.
Copy file name to clipboardExpand all lines: NEWS.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,11 @@ that are actually varying).
14
14
15
15
*`fit_control()` not returns an S3 method.
16
16
17
+
* For classification models, an error occurs if the outcome data are not encoded as factors (#115).
18
+
17
19
* The prediction modules (e.g. `predict_class`, `predict_numeric`, etc) were de-exported. These were internal functions that were not to be used by the users and the users were using them.
18
20
21
+
19
22
## Bug Fixes
20
23
21
24
*`varying_args()` now uses the version from the `generics` package. This means
0 commit comments