-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_pkgdown.yml
129 lines (111 loc) · 3.19 KB
/
_pkgdown.yml
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
119
120
121
122
123
124
125
126
127
128
129
home:
strip_header: true
navbar:
type: default
right:
- icon: fa-github fa-lg
href: https://github.com/great-northern-diver/ggmulti
development:
mode: release
destination: ./docs/
reference:
- title: Basics
desc: >
It provides functionality (e.g., serialaxes objects) to visualize high dimensional data
via `ggplot`s.
- title: Geoms and Stats
desc: >
**Geoms**: a layer combines data, aesthetic mapping, a `geom` (geometric object),
a `stat` (statistical transformation), and a `position` adjustment.
**Stats**: layers are more easily specified with a `stat_` function,
drawing attention to the statistical transformation rather than the visual appearance.
The computed variables can be mapped using an `after_stat()`.
- subtitle: Serial Axes Geoms
desc: >
Each non-aesthetics component defined in the mapping `aes()` will be treated as an axis.
contents:
- geom_serialaxes
- geom_serialaxes_density
- geom_serialaxes_hist
- geom_serialaxes_quantile
- geom_quantiles
- stat_serialaxes
- stat_dotProduct
- stat_serialaxes_density
- stat_serialaxes_hist
- stat_serialaxes_quantile
- subtitle: Glyph Geoms
desc: >
Provide a variety of glyphs for scatter plot
contents:
- geom_image_glyph
- geom_polygon_glyph
- geom_serialaxes_glyph
- subtitle: More general histogram and density plot
desc: >
Provide more general histograms and density plots. Both `x` and `y` can be accommodated:
`x` (or `y`) is a group variable, and `y` (or `x`) the target variable to be plotted.
If only one of `x` or `y` is provided, it will be the target variable (no grouping) and
the standard `geom_histogram()` or `geom_density()` will be executed.
contents:
- geom_histogram_
- geom_bar_
- geom_hist_
- geom_density_
- stat_hist_
- stat_bin_
- stat_count_
- stat_density_
- title: Position adjustment
desc: >
All layers have a position adjustment that resolves overlapping geoms.
Override the default by using the `position` argument to the `geom_` or
`stat_` function.
contents:
- position_identity_
- position_dodge_
- position_dodge2_
- position_stack_
- position_fill_
- title: Coord
desc: >
The coordinate system determines how the data is displayed on the plane.
Note that, in serial axes coordinate system, neither `x` or `y` is required.
Each non-aesthetics element defined in the mapping `aes()` will be treaed as the target of interest.
contents:
- coord_serialaxes
- coord_radial
- title: Accessories
desc: >
Some handy accessories used for visualization.
contents:
- add_serialaxes_layers
- andrews
- legendre
- x_airplane
- y_airplane
- x_cross
- y_cross
- x_hexagon
- y_hexagon
- x_maple
- y_maple
- x_star
- y_star
- title: Ggproto objects
desc: >
The object oriented system that `ggmulti` uses to extend the `ggplot` package
contents:
- Stat-ggproto
- Position-ggproto
- Geom-ggproto
- title: High dimensional data
desc: >
Provide a high dimensional data set used for visualization
contents:
- NBAstats2021
- title: Helper functions (deprecated in the future)
desc: >
Some helper functions
contents:
- get_scaledData