ListProjects {datarobot}R Documentation

Retrieve a list of all DataRobot projects

Description

This function returns an S3 object of class projectSummaryList that describes all (optionally filtered) DataRobot modeling projects available to the user. This list may be converted into a dataframe with the as.data.frame method for this class of S3 objects.

Usage

ListProjects(filter = NULL, limit = NULL, offset = NULL)

Arguments

filter

list. Optional. A named list that can be used to specify various filters. Currently 'projectName' is supported which will filter returned projects for projects with names containing the specified string.

limit

integer. Optional. At most this many results are returned. Invoking 'ListProjects' with this value against DataRobot 8.x (API 2.28) or older will throw an error.

offset

integer. Optional. This many results will be skipped. Invoking 'ListProjects' with this value against DataRobot 8.x (API 2.28) or older will throw an error.

Value

An S3 object of class 'projectSummaryList', consisting of the following elements:

Examples

## Not run: 
  ListProjects()
  ListProjects(filter = list("projectName" = "TimeSeries"))

## End(Not run)

[Package datarobot version 2.18.6 Index]