GetModelBlueprintChart: Retrieve a model blueprint chart

View source: R/Blueprints.R

GetModelBlueprintChartR Documentation

Retrieve a model blueprint chart

Description

A model blueprint is a "pruned down" blueprint representing what was actually run for the model. This is solely the branches of the blueprint that were executed based on the featurelist.

Usage

GetModelBlueprintChart(project, modelId)

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.

modelId

character. Unique alphanumeric identifier for the model of interest.

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"
  GetModelBlueprintChart(projectId, modelId)

## End(Not run)

datarobot documentation built on Nov. 3, 2023, 1:07 a.m.