Learn R Programming

datarobot (version 2.18.6)

DownloadSeriesAccuracy: Download the series accuracy for a model, computing it if not already computed.

Description

Download the series accuracy for a model, computing it if not already computed.

Usage

DownloadSeriesAccuracy(model, filename, encoding = "UTF-8")

Value

Nothing returned, but downloads the file to the stated filename.

Arguments

model

character. The model for which you want to compute Feature Impact, e.g. from the list of models returned by ListModels(project).

filename

character. Filename of file to save reason codes rows

encoding

character. Optional. Character string A string representing the encoding to use in the output file, defaults to 'UTF-8'.

Examples

Run this code
if (FALSE) {
  projectId <- "5984b4d7100d2b31c1166529"
  modelId <- "5984b4d7100d2b31c1166529"
  model <- GetModel(projectId, modelId)
  DownloadSeriesAccuracy(model, "seriesAccuracy.csv")
}

Run the code above in your browser using DataLab