GetBlueprintChart {datarobot} | R Documentation |
Retrieve a blueprint chart
Description
A Blueprint chart can be used to understand data flow in blueprint.
Usage
GetBlueprintChart(project, blueprintId)
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. |
blueprintId |
character. Id of blueprint to retrieve. |
Value
List with the following two components:
nodes. list each element contains information about one node of a blueprint : id and label.
edges. Two column matrix, identifying blueprint nodes connections.
Examples
## Not run:
projectId <- "59a5af20c80891534e3c2bde"
modelId <- "5996f820af07fc605e81ead4"
model <- GetModel(projectId, modelId)
blueprintId <- model$blueprintId
GetBlueprintChart(projectId, blueprintId)
## End(Not run)
[Package datarobot version 2.18.6 Index]