CreateFeaturelist | R Documentation |
This function allows the user to create a new featurelist in a project by specifying its name and a list of variables to be included
CreateFeaturelist(project, listName, featureNames)
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. |
listName |
character. String identifying the new featurelist to be created. |
featureNames |
character. Vector listing the names of the variables to be included in the featurelist. |
DataRobot featurelists define the variables from the modeling dataset used in fitting each project model. Some functions (SetTarget, StartNewAutopilot) optionally accept a featurelist (and use a default featurelist if none is specified).
A list with the following four elements describing the featurelist created:
Character string giving the unique alphanumeric identifier for the new featurelist.
Character string giving the projectId identifying the project to which the featurelist was added.
Character vector with the names of the variables included in the new featurelist.
Character string giving the name of the new featurelist.
## Not run:
projectId <- "59a5af20c80891534e3c2bde"
CreateFeaturelist(projectId, "myFeaturelist", c("feature1", "feature2", "otherFeature"))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.