|
| 1 | +--- |
| 2 | +warning: DO NOT CHANGE THIS MANUALLY, THIS IS GENERATED BY https://github/duckdb/community-extensions repository, check README there |
| 3 | +title: anofox_forecast |
| 4 | +excerpt: | |
| 5 | + DuckDB Community Extensions |
| 6 | + Statistical timeseries forecasting in DuckDB. Support ARIMA, SARIMA, ETS, TBATS, MFLES, MSTL, and other models. |
| 7 | +
|
| 8 | +extension: |
| 9 | + name: anofox_forecast |
| 10 | + description: Statistical timeseries forecasting in DuckDB. Support ARIMA, SARIMA, ETS, TBATS, MFLES, MSTL, and other models. |
| 11 | + language: C++ |
| 12 | + build: cmake |
| 13 | + excluded_platforms: "windows_amd64_rtools;windows_amd64_mingw;" |
| 14 | + license: BSL 1.1 |
| 15 | + maintainers: |
| 16 | + - sipemu |
| 17 | +repo: |
| 18 | + github: DataZooDE/anofox-forecast |
| 19 | + ref: d22d153cc211d8f086a6812518edcc5afa45e5a4 |
| 20 | +extension_star_count: 2 |
| 21 | +extension_star_count_pretty: 2 |
| 22 | +extension_download_count: 1 |
| 23 | +extension_download_count_pretty: 1 |
| 24 | +image: '/images/community_extensions/social_preview/preview_community_extension_anofox_forecast.png' |
| 25 | +layout: community_extension_doc |
| 26 | +--- |
| 27 | + |
| 28 | +### Installing and Loading |
| 29 | +```sql |
| 30 | +INSTALL {{ page.extension.name }} FROM community; |
| 31 | +LOAD {{ page.extension.name }}; |
| 32 | +``` |
| 33 | + |
| 34 | +{% if page.docs.hello_world %} |
| 35 | +### Example |
| 36 | +```sql |
| 37 | +{{ page.docs.hello_world }}``` |
| 38 | +{% endif %} |
| 39 | +
|
| 40 | +{% if page.docs.extended_description %} |
| 41 | +### About {{ page.extension.name }} |
| 42 | +{{ page.docs.extended_description }} |
| 43 | +{% endif %} |
| 44 | +
|
| 45 | +### Added Functions |
| 46 | +
|
| 47 | +<div class="extension_functions_table"></div> |
| 48 | +
|
| 49 | +| function_name | function_type | description | comment | examples | |
| 50 | +|----------------------------|---------------|-------------|---------|----------| |
| 51 | +| forecast | table | NULL | NULL | | |
| 52 | +| ts_analyze_seasonality | scalar | NULL | NULL | | |
| 53 | +| ts_bias | scalar | NULL | NULL | | |
| 54 | +| ts_coverage | scalar | NULL | NULL | | |
| 55 | +| ts_detect_changepoints | table_macro | NULL | NULL | | |
| 56 | +| ts_detect_changepoints_agg | aggregate | NULL | NULL | | |
| 57 | +| ts_detect_changepoints_by | table_macro | NULL | NULL | | |
| 58 | +| ts_detect_seasonality | scalar | NULL | NULL | | |
| 59 | +| ts_detect_seasonality_all | table_macro | NULL | NULL | | |
| 60 | +| ts_drop_constant | table_macro | NULL | NULL | | |
| 61 | +| ts_drop_leading_zeros | table_macro | NULL | NULL | | |
| 62 | +| ts_drop_short | table_macro | NULL | NULL | | |
| 63 | +| ts_drop_trailing_zeros | table_macro | NULL | NULL | | |
| 64 | +| ts_drop_zeros | table_macro | NULL | NULL | | |
| 65 | +| ts_fill_gaps | table_macro | NULL | NULL | | |
| 66 | +| ts_fill_nulls_backward | table_macro | NULL | NULL | | |
| 67 | +| ts_fill_nulls_forward | table_macro | NULL | NULL | | |
| 68 | +| ts_fill_nulls_mean | table_macro | NULL | NULL | | |
| 69 | +| ts_forecast | table_macro | NULL | NULL | | |
| 70 | +| ts_forecast_agg | aggregate | NULL | NULL | | |
| 71 | +| ts_forecast_by | table_macro | NULL | NULL | | |
| 72 | +| ts_mae | scalar | NULL | NULL | | |
| 73 | +| ts_mape | scalar | NULL | NULL | | |
| 74 | +| ts_mase | scalar | NULL | NULL | | |
| 75 | +| ts_mqloss | scalar | NULL | NULL | | |
| 76 | +| ts_mse | scalar | NULL | NULL | | |
| 77 | +| ts_quantile_loss | scalar | NULL | NULL | | |
| 78 | +| ts_r2 | scalar | NULL | NULL | | |
| 79 | +| ts_rmae | scalar | NULL | NULL | | |
| 80 | +| ts_rmse | scalar | NULL | NULL | | |
| 81 | +| ts_smape | scalar | NULL | NULL | | |
| 82 | +| ts_stats | table_macro | NULL | NULL | | |
| 83 | +
|
| 84 | +
|
0 commit comments