-
Notifications
You must be signed in to change notification settings - Fork 11
/
_pkgdown.yml
134 lines (121 loc) · 3.06 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
130
131
132
133
134
url: https://descriptr.rsquaredacademy.com
template:
bootstrap: 5
authors:
Aravind Hebbali:
href: https://www.aravindhebbali.com
templates:
params:
bootswatch: cerulean
navbar:
title: "descriptr"
type: inverse
left:
- text: "Home"
href: index.html
- text: "Guides"
menu:
- text: "Continuous Data"
href: articles/continuous-data.html
- text: "Categorical Data"
href: articles/categorical-data.html
- text: "Visualization"
href: articles/visualization.html
- text: "Reference"
menu:
- text: "Functions"
href: reference/index.html
- text: "News"
href: news/index.html
right:
- icon: fa-github
href: https://github.com/rsquaredacademy/descriptr
home:
links:
- text: Our R packages
href: https://pkgs.rsquaredacademy.com
- text: Read our blog
href: https://blog.rsquaredacademy.com
- text: Our ebooks
href: https://ebooks.rsquaredacademy.com
- text: Online courses
href: https://www.rsquaredacademy.com
reference:
- title: Shiny App
desc: >
Launches shiny app for interactive exploration of data sets.
contents:
- ds_launch_shiny_app
- title: Data Screening
desc: >
The `screener()` function will screen data frames and return details such
as variable names, class, levels and missing values. The `plot.screener()`
creates bar plots to visualize % of missing observations for each variable
in a data frame.
contents:
- ds_screener
- title: Continuous Data
desc: >
The following functions ease the process of generating and visualizing
descriptive statistics for continuous data.
contents:
- ds_auto_summary_stats
- ds_extreme_obs
- ds_freq_table
- ds_measures_location
- ds_measures_symmetry
- ds_measures_variation
- ds_percentiles
- ds_summary_stats
- ds_tidy_stats
- title: Categorical Data
desc: >
The following functions ease the process of generating and visualizing
descriptive statistics for categorical data.
contents:
- ds_auto_cross_table
- ds_auto_freq_table
- ds_cross_table
- ds_freq_table
- title: Grouped Summary
desc: >
The following functions generate grouped summary statistics.
contents:
- ds_auto_group_summary
- ds_group_summary
- ds_group_summary_interact
- title: Visualization
desc: >
The following functions generate plots for different data types.
contents:
- ds_plot_bar
- ds_plot_bar_grouped
- ds_plot_bar_stacked
- ds_plot_box_group
- ds_plot_box_single
- ds_plot_density
- ds_plot_histogram
- ds_plot_scatter
- title: Other Functions
desc: >
A set of functions used to generate `summary_stats`.
contents:
- ds_css
- ds_cvar
- ds_gmean
- ds_hmean
- ds_kurtosis
- ds_mdev
- ds_mode
- ds_range
- ds_rindex
- ds_skewness
- ds_std_error
- ds_tailobs
- title: Data
desc: >
descriptr comes with a built-in dataset `hsb` which is used to
illustrate the functions as well as for running tests.
contents:
- hsb
- mtcarz