fetch_predictions {civis}R Documentation

Retrieve predictions from a CivisML prediction job

Description

Retrieve predictions from a CivisML prediction job

Usage

fetch_predictions(x, ...)

Arguments

x

civis_ml_prediction object from predict.civis_ml

...

arguments passed to read.csv

Details

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

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.

Examples

## Not run: 
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")


## End(Not run)

[Package civis version 3.1.2 Index]