Retrieve predictions from a CivisML prediction job

fetch_predictions(x, ...)

Arguments

x

civis_ml_prediction object from predict.civis_ml

...

arguments passed to read.csv

Value

A data.frame of predictions containing an additional column with a primary key. For a multiclass model, a data frame is returned with one column of predictions for each class.

Details

Predictions can also be downloaded as a csv directly using download_civis (see examples).

Examples

if (FALSE) { m <- civis_ml("path/to/file.csv", model_type = "sparse_logistic", dependent_variable = "Species") pred_job <- predict(m, newdata = "path/to/newdata.csv") yhat <- fetch_predictions(pred_job) # download instead: download_civis(pred_job$model_info$output_file_ids, path = "my_predictions.csv") }