fetch_predictions: Retrieve predictions from a CivisML prediction job

Description Usage Arguments Details Value Examples

View source: R/civis_ml.R

Description

Retrieve predictions from a CivisML prediction job

Usage

1

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## 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)

civisanalytics/civis-r documentation built on June 27, 2020, 7:25 a.m.