augment.tune_results | R Documentation |
For tune
objects that use resampling, these augment()
methods will add
one or more columns for the hold-out predictions (i.e. from the assessment
set(s)).
## S3 method for class 'tune_results'
augment(x, ..., parameters = NULL)
## S3 method for class 'resample_results'
augment(x, ...)
## S3 method for class 'last_fit'
augment(x, ...)
x |
An object resulting from one of the |
... |
Not currently used. |
parameters |
A data frame with a single row that indicates what
tuning parameters should be used to generate the predictions (for |
For some resampling methods where rows may be replicated in multiple assessment sets, the prediction columns will be averages of the holdout results. Also, for these methods, it is possible that all rows of the original data do not have holdout predictions (like a single bootstrap resample). In this case, all rows are return and a warning is issued.
For objects created by last_fit()
, the test set data and predictions are
returned.
Unlike other augment()
methods, the predicted values for regression models
are in a column called .pred
instead of .fitted
(to be consistent with
other tidymodels conventions).
For regression problems, an additional .resid
column is added to the
results.
A data frame with one or more additional columns for model predictions.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.