View source: R/SeriesAccuracy.R
GetSeriesAccuracyForModel | R Documentation |
This will not work if you have not separately computed series accuracy via
RequestSeriesAccuracy
. See GetSeriesAccuracy
for a function that
will get series accuracy and also compute it automatically if it has not already been compute.
GetSeriesAccuracyForModel(model)
model |
character. The model for which you want to compute Feature Impact, e.g.
from the list of models returned by |
data.frame with items:
multiseriesId character. The ID of the series.
rowCount integer. The number of rows in the series.
multiseriesValues character. The name of the series.
duration character. The duration of the series.
validationScore numeric. The validation score for the series.
backtestingScore numeric. The score on backtests for the series. See
ScoreBacktests
.
holdoutScore numeric. The score for the series on the holdout set.
## Not run:
projectId <- "5984b4d7100d2b31c1166529"
modelId <- "5984b4d7100d2b31c1166529"
model <- GetModel(projectId, modelId)
jobId <- RequestSeriesAccuracy(projectId, modelId)
WaitForJobToComplete(projectId, jobId)
seriesAccuracy <- GetSeriesAccuracyForModel(model)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.