# Packages
No description provided by the author
No description provided by the author
Package interpolation implements various algorithms to fill in missing values in a Series or DataFrame.
# Functions
ConfidenceLevelToZ returns the Z value for a given confidence level.
DriftConfidenceInterval - see https://otexts.com/fpp2/prediction-intervals.html.
Forecast predicts the next n values of sdf using the forecasting algorithm alg.
MeanConfidenceInterval - see https://otexts.com/fpp2/prediction-intervals.html.
NaïveConfidenceInterval - see https://otexts.com/fpp2/prediction-intervals.html.
SeasonalNaïveConfidenceInterval - see https://otexts.com/fpp2/prediction-intervals.html.
# Variables
ErrIndeterminate indicates that the result of a calculation is indeterminate.
ErrInsufficientDataPoints signifies that a particular forecasting algorithm requires more data points to operate.
ErrMismatchLen signifies that there is a mismatch between the length of 2 Series or slices.
# Structs
ConfidenceInterval represents an estimated range of values that includes the forecasted value within its bounds.
EvaluationFuncOptions is used to modify the behavior of the EvaluationFunc.
# Interfaces
ForecastingAlgorithm defines the methods that all forecasting algorithms must implement.
# Type aliases
Confidence contains the confidence intervals for various confidence levels.
EvaluationFunc compares the validationSet and forecastSet and calculates the error.