-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
118 lines (101 loc) · 3.28 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Page settings
baseurl = "tidyverts.org"
title = "tidyverts"
languageCode = "en-us"
theme = "hugo-elate-theme"
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
[params]
custom_css = ["css/custom.css"]
# Meta
author = ""
description = ""
email = ""
# Navigation
[params.navigation]
brand = "tidyverts"
home = "Home"
pkgs = "Packages"
# You can add custom links before or after the default links
# Assign a weight to define the order
# prepended links
#[[menu.prepend]]
# url = "http://gohugo.io"
# name = "Hugo"
# weight = 10
# postpended links
#[[menu.postpend]]
# url = "http://gohugo.io"
# name = "External link"
# weight = 10
# Hero section
[params.hero]
title = "Tidy tools for time series."
# Packages section
[params.pkgs]
enable = true
title = "Packages"
[[params.pkgs.item]]
name = "tsibble"
summary = "Temporal data frames and tools"
img = "tsibble.png"
alt = "tsibble-hex"
urls = [
["icon-social-github", "https://github.com/tidyverts/tsibble"],
["icon-globe", "https://tsibble.tidyverts.org"],
["icon-puzzle", "https://cran.r-project.org/package=tsibble"]
]
[[params.pkgs.item]]
name = "fable"
summary = "Tidy forecasting"
img = "fable.png"
alt = "fable-hex"
urls = [
["icon-social-github", "https://github.com/tidyverts/fable"],
["icon-globe", "https://fable.tidyverts.org"],
["icon-puzzle", "https://cran.r-project.org/package=fable"]
]
[[params.pkgs.item]]
name = "feasts"
summary = "Feature extraction and statistics"
img = "feasts.png"
alt = "feasts-hex"
urls = [
["icon-social-github", "https://github.com/tidyverts/feasts"],
["icon-globe", "https://feasts.tidyverts.org"],
["icon-puzzle", "https://cran.r-project.org/package=feasts"]
]
[[params.pkgs.item]]
name = "tsibbledata"
summary = "Diverse datasets for tsibble"
img = "tsibbledata.png"
alt = "tsibbledata-hex"
urls = [
["icon-social-github", "https://github.com/tidyverts/tsibbledata"],
["icon-globe", "https://tsibbledata.tidyverts.org"],
["icon-puzzle", "https://cran.r-project.org/package=tsibbledata"]
]
[[params.pkgs.item]]
name = "fable.prophet"
summary = "Interface to prophet forecaster for fable"
urls = [
["icon-social-github", "https://github.com/mitchelloharawild/fable.prophet"],
["icon-globe", "http://pkg.mitchelloharawild.com/fable.prophet/"],
["icon-puzzle", "https://cran.r-project.org/package=fable.prophet"]
]
[[params.pkgs.item]]
name = "fable.binary"
summary = "Forecasting binary time series"
urls = [
["icon-social-github", "https://github.com/tidyverts/fable.binary"],
["icon-globe", "http://tidyverts.github.io/fable.binary/"],
]
[[params.pkgs.item]]
name = "tsibbletalk"
summary = "Interactive crosstalk graphics for tsibble"
urls = [
["icon-social-github", "https://github.com/earowang/tsibbletalk"],
["icon-puzzle", "https://cran.r-project.org/package=tsibbletalk"]
]
# Footer section
[params.footer]
enable = false