NStepAhead Module
Loads and saves one-step-ahead and n-step-ahead prediction results into and out of simple CSV files
Types
| Type | Description |
|
|
|
|
|
Functions and values
| Function or value |
Description
|
Full Usage:
NStepAhead.save directory subjectId modelId analysisId stepsAhead result
Parameters:
string
-
The file directory to save to
subjectId : string
-
Subject ID
modelId : string
-
Model ID or Hypothesis ID
analysisId : Guid
-
The unique reference of the estimation result used to generate n-step predictions
stepsAhead : int
-
The number of time-steps ahead predicted
result : CodedMap<FitSeries<DateTime, 'a, 'b> * NStepStatistics>
-
The n-step prediction from Bristlecone.oneStepAhead or similar
|
Save an individual n-step prediction (excluding statistics) for an individual subject and hypothesis / model.
|
Full Usage:
NStepAhead.saveAllRMSE directory results
Parameters:
string
-
The file directory to save to
results : (string * string * CodedMap<FitSeries<'a, 'b, 'c> * NStepStatistics>) seq
-
A sequence of subjectID * hypothesisID * n-step result
|
Saves a full ensemble overview of the root mean squared error of n-step ahead predictions.
|
bristlecone