-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_quarto.yml
More file actions
65 lines (54 loc) · 1.42 KB
/
_quarto.yml
File metadata and controls
65 lines (54 loc) · 1.42 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
project:
type: website
metadata-files:
- reference/_sidebar.yml
website:
navbar:
background: primary
search: true
left:
- text: "Home"
href: docs/index.qmd
- text: "Documentation"
href: reference/index.qmd
sidebar:
contents:
- text: Home
file: docs/index.qmd
- text: API Reference
file: reference/index.qmd
- text: Contributing
file: docs/contributing.qmd
- text: License
file: docs/license.qmd
format:
html:
css:
- reference/_styles-quartodoc.css
quartodoc:
package: autoeda
sidebar: reference/_sidebar.yml
css: reference/_styles-quartodoc.css
sections:
- title: Summary statistics
desc: Functions to perform automated exploratory data analysis.
package: autoeda
contents:
- get_summary_df
- title: Data inspection
desc: Functions to inspect data for common issues.
package: autoeda.inspect
contents:
- get_unary
- get_high_cardinality
- title: Missing data and outliers
desc: Function to check amount of missing data in a DataFrame.
package: autoeda.check_na_outlier
contents:
- check_na_outliers
- title: Data plotting
desc: Functions to create common plots for exploratory data analysis.
package: autoeda.plot
contents:
- plot_correlation_heatmap
- plot_histograms_by_target