Max Kuhn
Max Kuhn
If we have a formula method,`predict_boots()` fails ``` r library(tidymodels) library(workboots) car_pred_int % predict_boots( n = 2000, training_data = mtcars[3:32,], new_data = mtcars[1:2,] ) #> Error in UseMethod("filter"): no applicable...
Once you’ve got a final model, you might want to make interval predictions multiple times. I think that we can save the bootstrap models (efficiently) so that we don’t have...
I'm not sure that getting percentiles of the predictions is the same thing as a prediction interval. It think that it is more like a confidence interval of the predictions....
When running the code on R4.0, the results are different each time: ``` r library(ModelMetrics) #> #> Attaching package: 'ModelMetrics' #> The following object is masked from 'package:base': #> #>...
`train.kknn` protects against `kmax` being too large but not `ks`: ``` r library(kknn) train.kknn(mpg ~ ., data = mtcars, ks = 32) #> Error in D[, 1:j]: subscript out of...
When `kknn` is referenced by namespace (as opposed to being fully attached via `library`) an error occurs: ``` r train.con Error in get(ctr, mode = "function", envir = parent.frame()): object...
I ran into a bug when the number of neighbors is greater than the number of samples being _predicted_. It only occurs on the GH version; the CRAN version is...
Thanks for making this. If I want to use it with a book, how would that happen? It looks like the yml that you have goes into the individual documents...
Just a clarification question, since the blocked shot raw data is a pain. For blocked shots, in the raw data, the event seems to refer to the team that is...
Nearest-shrunken centroids