-
Notifications
You must be signed in to change notification settings - Fork 15
/
_quarto.yml
executable file
·47 lines (41 loc) · 971 Bytes
/
_quarto.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
project:
type: website
output-dir: docs
website:
title: "Basic stats explained (in R)"
google-analytics: "G-ZTL54L3SJR"
navbar:
left:
- href: CI.qmd
text: "Confidence intervals"
- href: z_t_tests.qmd
text: "Z and T tests"
- href: F_test.qmd
text: "F-test: Test for difference in spread"
- href: ChiSquare_test.qmd
text: "ChiSquare"
- href: regression.qmd
text: "Ordinary least squares Regression"
- href: ANOVA.qmd
text: "Analysis of variance (ANOVA)"
- href: Logistic.qmd
text: "Logistic regression"
page-footer:
right: "Creative Commons License, Manny Gimond, 2022"
search:
location: navbar
type: overlay
format:
html:
theme:
- cosmo
- custom.scss
toc: true
minimal: true
number-sections: true
code-copy: hover
anchor-sections: true
execute:
cache: false
warning: false
error: false