Learn R Programming

vetiver (version 0.2.7)

augment.vetiver_endpoint: Post new data to a deployed model API endpoint and augment with predictions

Description

Post new data to a deployed model API endpoint and augment with predictions

Usage

# S3 method for vetiver_endpoint
augment(x, new_data, ...)

Value

The new_data with added prediction column(s).

Arguments

x

A model API endpoint object created with vetiver_endpoint().

new_data

New data for making predictions, such as a data frame.

...

Extra arguments passed to httr::POST()

See Also

predict.vetiver_endpoint()

Examples

Run this code

if (FALSE) {
endpoint <- vetiver_endpoint("http://127.0.0.1:8088/predict")
augment(endpoint, mtcars[4:7, -1])
}

Run the code above in your browser using DataLab