AddEureqaSolution {datarobot} | R Documentation |
Add a Eureqa solution to the list of models for the project.
Description
Each Eureqa model contains multiple possible solutions (see GetParetoFront
).
However, only the best model is included in the leaderboard by default. To include
other models, you can get them via GetParetoFront
and then add them.
Usage
AddEureqaSolution(project, eureqaSolutionId)
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. |
eureqaSolutionId |
character. The solution ID of the Eureqa model to add. |
Examples
## Not run:
projectId <- "5b2827556523cd05bd1507a5"
modelId <- "5b29406c6523cd0665685a8d"
eureqaModel <- GetModel(projectId, modelId)
paretoFront <- GetParetoFront(eureqaModel)
## End(Not run)
[Package datarobot version 2.18.6 Index]