Skip to content

Commit 5cda5b3

Browse files
authored
Merge pull request #6158 from duckdb/auto_update_community_extensions_docs
chore: update Community Extensions docs
2 parents 981a776 + 3361e1f commit 5cda5b3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+357
-248
lines changed

_includes/list_of_community_extensions.md

Lines changed: 80 additions & 75 deletions
Large diffs are not rendered by default.

community_extensions/extensions/a5.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ repo:
2323
ref: 821a3a86d38ce9f62739adeae7ad9496e582aa5b
2424
extension_star_count: 7
2525
extension_star_count_pretty: 7
26-
extension_download_count: 649
27-
extension_download_count_pretty: 649
26+
extension_download_count: 657
27+
extension_download_count_pretty: 657
2828
image: '/images/community_extensions/social_preview/preview_community_extension_a5.png'
2929
layout: community_extension_doc
3030
---
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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+

community_extensions/extensions/anofox_statistics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ repo:
2020

2121
extension_star_count: 4
2222
extension_star_count_pretty: 4
23-
extension_download_count: 650
24-
extension_download_count_pretty: 650
23+
extension_download_count: 643
24+
extension_download_count_pretty: 643
2525
image: '/images/community_extensions/social_preview/preview_community_extension_anofox_statistics.png'
2626
layout: community_extension_doc
2727
---

community_extensions/extensions/arrow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ docs:
4545
4646
extension_star_count: 50
4747
extension_star_count_pretty: 50
48-
extension_download_count: 16656
49-
extension_download_count_pretty: 16.7k
48+
extension_download_count: 17370
49+
extension_download_count_pretty: 17.4k
5050
image: '/images/community_extensions/social_preview/preview_community_extension_nanoarrow.png'
5151
layout: community_extension_doc
5252
---

community_extensions/extensions/bigquery.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ docs:
5454
5555
extension_star_count: 142
5656
extension_star_count_pretty: 142
57-
extension_download_count: 11563
58-
extension_download_count_pretty: 11.6k
57+
extension_download_count: 11404
58+
extension_download_count_pretty: 11.4k
5959
image: '/images/community_extensions/social_preview/preview_community_extension_bigquery.png'
6060
layout: community_extension_doc
6161
---

community_extensions/extensions/bitfilters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ repo:
2424

2525
extension_star_count: 5
2626
extension_star_count_pretty: 5
27-
extension_download_count: 680
28-
extension_download_count_pretty: 680
27+
extension_download_count: 678
28+
extension_download_count_pretty: 678
2929
image: '/images/community_extensions/social_preview/preview_community_extension_bitfilters.png'
3030
layout: community_extension_doc
3131
---

community_extensions/extensions/blockduck.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ docs:
2525

2626
extension_star_count: 9
2727
extension_star_count_pretty: 9
28-
extension_download_count: 644
29-
extension_download_count_pretty: 644
28+
extension_download_count: 626
29+
extension_download_count_pretty: 626
3030
image: '/images/community_extensions/social_preview/preview_community_extension_blockduck.png'
3131
layout: community_extension_doc
3232
---

community_extensions/extensions/boilstream.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ docs:
3636
3737
extension_star_count: 1
3838
extension_star_count_pretty: 1
39-
extension_download_count: 646
40-
extension_download_count_pretty: 646
39+
extension_download_count: 626
40+
extension_download_count_pretty: 626
4141
image: '/images/community_extensions/social_preview/preview_community_extension_boilstream.png'
4242
layout: community_extension_doc
4343
---

community_extensions/extensions/bvh2sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ docs:
6060
6161
extension_star_count: 0
6262
extension_star_count_pretty: 0
63-
extension_download_count: 658
64-
extension_download_count_pretty: 658
63+
extension_download_count: 663
64+
extension_download_count_pretty: 663
6565
image: '/images/community_extensions/social_preview/preview_community_extension_bvh2sql.png'
6666
layout: community_extension_doc
6767
---

0 commit comments

Comments
 (0)