-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path_pkgdown.yml
More file actions
82 lines (75 loc) · 1.91 KB
/
_pkgdown.yml
File metadata and controls
82 lines (75 loc) · 1.91 KB
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
url: https://fastverse.org/kit/
home:
title: Data Manipulation Functions Implemented in C
template:
bootstrap: 5
bootswatch: sandstone
theme: ayu-dark # Or: ayu-mirage
math-rendering: katex
bslib:
primary: "#1e2124" # "#202224" # "#242424" # "#003254"
code-color: "#004573" # "#9c0027" # "#004d80" # b3002d
gray-dark: "#3f464d"
development:
mode: auto
navbar:
title: kit
structure:
left:
- reference
- articles
- news
- blog
right:
- search
- github
components:
reference:
text: Documentation
href: reference/index.html
articles:
text: Vignettes
href: articles/index.html
news:
text: News
href: news/index.html
github:
icon: fa-github
href: https://github.com/fastverse/kit
aria-label: GitHub
reference:
- title: "Parallel Statistical Functions"
desc: "Vector-valued (statistical) functions operating in parallel over vectors passed as arguments, or a single list of vectors/data frame."
- contents:
- parallel-funs
- title: "Vectorised and Nested Switches"
desc: "Fast vectorized and nested switches."
- contents:
- iif
- nif
- vswitch/nswitch
- title: "Sorting"
desc: "Parallel sort for strings and partial sort (N largest/smallest)."
- contents:
- psort
- topn
- title: "Factors"
desc: "Fast character to factor conversion and changing factor levels by reference."
- contents:
- charToFact
- setlevels
- title: "Unique Values and Counts"
desc: "Fast duplicated and unique and count the number of times element(s) occur."
- contents:
- fduplicated/funique
- count
- title: "Miscellaneous"
desc: "Find a matrix position inside a larger matrix and share data between R sessions."
- contents:
- fpos
- shareData/getData/clearData
articles:
- title: "Introduction to kit"
desc: Introduces the package, including a walk-through of all main features.
contents:
- introduction