tidy predict

tidy_predict(
  model,
  newdata,
  form = NULL,
  olddata = NULL,
  bind_preds = FALSE,
  ...
)

# S3 method for Rcpp_ENSEMBLE
tidy_predict(model, newdata, form = NULL, ...)

# S3 method for glm
tidy_predict(model, newdata, form = NULL, ...)

# S3 method for default
tidy_predict(model, newdata, form = NULL, ...)

# S3 method for BinaryTree
tidy_predict(model, newdata, form = NULL, ...)

# S3 method for xgb.Booster
tidy_predict(
  model,
  newdata,
  form = NULL,
  olddata = NULL,
  bind_preds = FALSE,
  ...
)

# S3 method for lgb.Booster
tidy_predict(
  model,
  newdata,
  form = NULL,
  olddata = NULL,
  bind_preds = FALSE,
  ...
)

Arguments

model

model

newdata

dataframe

form

the formula used for the model

olddata

training data set

bind_preds

set to TURE if newdata is a dataset without any labels, to bind the new and old data with the predictions under the original target name

...

other parameters to pass to predict

Value

dataframe