Skip to main content

Function Finder

Quick reference to all Forecast extension functions. Find the right function for your task.

Function Naming: All functions use the anofox_fcst_ts_* prefix. Short aliases (e.g., ts_forecast_by) are also available.

Categories

Exploratory Data Analysis

Profile your time series data

statsquality_reportstats_summary

Data Quality

Multi-dimensional quality assessment

data_qualitydata_quality_summary

Data Preparation

12 functions for cleaning and transforming data

fill_gapsdrop_shortfill_nulls+9 more

Diagnostics

Period detection, decomposition, peaks, changepoints

detect_periods_byclassify_seasonalitydetrend_by+4 more

Cross-Validation

8 functions for backtesting and CV splits

cv_folds_bycv_forecast_bycv_hydrate_by+5 more

Conformal Prediction

11 functions for distribution-free intervals

conformal_predictconformal_calibrateconformal_evaluate

Exogenous Variables

Incorporate external predictors

forecast_exog_by

Hierarchy Management

Multi-level key handling for forecasting

combine_keyssplit_keysaggregate_hierarchy

Features

Extract 117 time series characteristics

featuresfeatures_listconfig_from_json

Models

32 forecasting algorithms for any data type

AutoETSAutoARIMATBATSTheta+27 more

Metrics

11 forecast accuracy and error metrics

MAERMSEMAPEMASE+7 more

All Functions

FunctionDescriptionSQL SignatureCategory
anofox_fcst_ts_forecast_byMultiple series forecast(table, group, date, value, model, horizon, freq, params) -> TABLEForecasting
anofox_fcst_ts_forecast_exog_byMulti-series forecast with exogenous(table, group, date, value, x_cols, future, ...) -> TABLEForecasting
anofox_fcst_ts_stats_byPer-series statistics (36 columns)(table, group, date, value, freq) -> TABLEEDA
anofox_fcst_ts_quality_reportQuality assessment from stats(stats_table, min_length) -> TABLEEDA
anofox_fcst_ts_stats_summaryDataset-level summary(stats_table) -> TABLEEDA
anofox_fcst_ts_data_quality_byMulti-dimensional quality scores(table, group, date, value, n_short, freq) -> TABLEData Quality
anofox_fcst_ts_data_quality_summaryQuality summary across series(table, group, date, value, n_short) -> TABLEData Quality
anofox_fcst_ts_detect_periods_byMulti-method period detection(table, group, date, value, params) -> TABLEDiagnostics
anofox_fcst_ts_classify_seasonality_byClassify seasonality type(table, group, date, value, period) -> TABLEDiagnostics
anofox_fcst_ts_classify_seasonalityClassify seasonality (single)(table, date, value, period) -> TABLEDiagnostics
anofox_fcst_ts_mstl_decomposition_byMSTL decomposition(table, group, date, value, periods[], params) -> TABLEDiagnostics
anofox_fcst_ts_detrend_byRemove trend(table, group, date, value, method) -> TABLEDiagnostics
anofox_fcst_ts_detect_peaks_byDetect local maxima(table, group, date, value, params) -> TABLEDiagnostics
anofox_fcst_ts_analyze_peak_timing_byAnalyze peak timing(table, group, date, value, period, params) -> TABLEDiagnostics
anofox_fcst_ts_detect_changepoints_byMulti-series changepoints(table, group, date, value, params) -> TABLEDiagnostics
anofox_fcst_ts_features_byExtract 117 features(table, group, date, value) -> TABLEFeatures
anofox_fcst_ts_features_listList available features() -> TABLEFeatures
anofox_fcst_ts_features_config_from_jsonLoad feature config (JSON)(path) -> MAPFeatures
anofox_fcst_ts_features_config_from_csvLoad feature config (CSV)(path) -> MAPFeatures
anofox_fcst_ts_maeMean Absolute Error(actual[], predicted[]) -> DOUBLEMetrics
anofox_fcst_ts_mseMean Squared Error(actual[], predicted[]) -> DOUBLEMetrics
anofox_fcst_ts_rmseRoot Mean Squared Error(actual[], predicted[]) -> DOUBLEMetrics
anofox_fcst_ts_mapeMean Abs Percentage Error(actual[], predicted[]) -> DOUBLEMetrics
anofox_fcst_ts_smapeSymmetric MAPE(actual[], predicted[]) -> DOUBLEMetrics
anofox_fcst_ts_maseMean Abs Scaled Error(actual[], predicted[], baseline[]) -> DOUBLEMetrics
anofox_fcst_ts_r2R-squared(actual[], predicted[]) -> DOUBLEMetrics
anofox_fcst_ts_biasForecast bias (mean error)(actual[], predicted[]) -> DOUBLEMetrics
anofox_fcst_ts_rmaeRelative MAE(actual[], predicted[], baseline[]) -> DOUBLEMetrics
anofox_fcst_ts_quantile_lossQuantile loss(actual[], predicted[], quantile) -> DOUBLEMetrics
anofox_fcst_ts_coverageInterval coverage(actual[], lower[], upper[]) -> DOUBLEMetrics
anofox_fcst_ts_fill_gaps_byFill missing timestamps(table, group, date, value, freq) -> TABLEData Preparation
anofox_fcst_ts_fill_forward_byExtend series to target date(table, group, date, value, target, freq) -> TABLEData Preparation
anofox_fcst_ts_drop_constant_byRemove constant series(table, group, value) -> TABLEData Preparation
anofox_fcst_ts_drop_short_byRemove short series(table, group, min_length) -> TABLEData Preparation
anofox_fcst_ts_drop_gappy_byRemove gappy series(table, group, value, max_gap_ratio) -> TABLEData Preparation
anofox_fcst_ts_drop_zeros_byRemove all-zero series(table, group, value) -> TABLEData Preparation
anofox_fcst_ts_drop_leading_zeros_byRemove leading zeros(table, group, date, value) -> TABLEData Preparation
anofox_fcst_ts_drop_trailing_zeros_byRemove trailing zeros(table, group, date, value) -> TABLEData Preparation
anofox_fcst_ts_drop_edge_zeros_byRemove edge zeros(table, group, date, value) -> TABLEData Preparation
anofox_fcst_ts_fill_nulls_const_byFill NULLs with constant(table, group, date, value, fill_value) -> TABLEData Preparation
anofox_fcst_ts_fill_nulls_forward_byForward fill (LOCF)(table, group, date, value) -> TABLEData Preparation
anofox_fcst_ts_fill_nulls_backward_byBackward fill (NOCB)(table, group, date, value) -> TABLEData Preparation
anofox_fcst_ts_fill_nulls_mean_byFill with series mean(table, group, date, value) -> TABLEData Preparation
anofox_fcst_ts_diff_byDifferencing transformation(table, group, date, value, order) -> TABLEData Preparation
anofox_fcst_ts_cv_folds_byCreate CV folds(table, group, date, value, n_folds, horizon, params) -> TABLECross-Validation
anofox_fcst_ts_cv_forecast_byForecast on CV folds(folds, group, date, value, method, params) -> TABLECross-Validation
anofox_fcst_ts_cv_split_byCustom fold boundaries(table, group, date, value, cutoffs, horizon, params) -> TABLECross-Validation
anofox_fcst_ts_cv_hydrate_byAdd features to folds(folds, source, group, date, features[], params) -> TABLECross-Validation
anofox_fcst_ts_conformal_byGrouped conformal prediction(backtest, group, actual, forecast, point, params) -> TABLEConformal
anofox_fcst_ts_conformal_calibrateCalibrate conformity score(backtest, actual, forecast, params) -> TABLEConformal
anofox_fcst_ts_conformal_apply_byApply score to forecasts(forecasts, group, forecast_col, score) -> TABLEConformal
anofox_fcst_ts_conformal_coverageEmpirical coverage(actuals[], lower[], upper[]) -> DOUBLEConformal
anofox_fcst_ts_conformal_evaluateFull interval evaluation(actuals[], lower[], upper[], alpha) -> STRUCTConformal
Showing 53 of 53
🍪 Cookie Settings