Learn R Programming

datarobot (version 2.18.6)

DownloadRatingTable: Download a rating table to a CSV.

Description

Download a rating table to a CSV.

Usage

DownloadRatingTable(project, ratingTableId, filename)

Value

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

Arguments

project

character. Either (1) a character string giving the unique alphanumeric identifier for the project, or (2) a list containing the element projectId with this identifier.

ratingTableId

character. The ID of the rating table.

filename

character. Filename of file to save the rating table to.

Examples

Run this code
if (FALSE) {
 projectId <- "5984b4d7100d2b31c1166529"
 ratingTableId <- "5984b4d7100d2b31c1166529"
 file <- file.path(tempdir(), "ratingTable.csv")
 DownloadRatingTable(projectId, ratingTableId, file)
}

Run the code above in your browser using DataLab