-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_quarto.yml
165 lines (142 loc) · 3.92 KB
/
_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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
project:
type: book
output-dir: _book
pre-render: _references.R
lang: fr-FR
bibliography: [book.bib, packages.bib]
# csl: chicago-fullnote-bibliography.csl
crossref:
eq-prefix: équation
fig-prefix: figure
tbl-prefix: tableau
ref-hyperlink: true
book:
title: "R pour l'archéologue"
subtitle: "Exploration, visualisation et analyse de données"
date: today
date-format: "YYYY"
author:
- name: Nicolas Frerebeau
orcid: 0000-0001-5759-4944
affiliations:
- name: Université Bordeaux Montaigne
- name: Ben Marwick
orcid: 0000-0001-7879-4531
affiliations:
- name: University of Washington
output-file: rarcheo
reader-mode: true
search: true
page-navigation: true
# downloads: [pdf]
site-url: https://r-archeo.huma-num.fr
repo-url: https://github.com/nfrerebeau/rarcheo/
repo-actions: [edit, source, issue]
sidebar:
collapse-level: 1
chapters:
- index.qmd
- chapters/00-introduction.qmd
- part: Premiers pas avec R
chapters:
- chapters/01-rstats/introduction.qmd
- chapters/01-rstats/objects.qmd
- chapters/01-rstats/subsetting.qmd
- chapters/01-rstats/operators.qmd
- chapters/01-rstats/flow.qmd
- chapters/01-rstats/functions.qmd
- part: Vers une recherche reproductible
chapters:
- chapters/02-research/reproducibility.qmd
- chapters/02-research/literate_programming.qmd
- chapters/02-research/compendium.qmd
- part: Préparer ses données
chapters:
- chapters/03-data/measure.qmd
- chapters/03-data/variables.qmd
- chapters/03-data/read_write.qmd
- chapters/03-data/manipulation.qmd
- part: Statistiques descriptives
chapters:
- chapters/04-statistics/univariate.qmd
- chapters/04-statistics/bivariate.qmd
- chapters/04-statistics/outliers.qmd
- part: Visualisation de données
chapters:
- chapters/05-visualization/introduction.qmd
- chapters/05-visualization/graphs.qmd
- part: Données de comptage
chapters:
- chapters/artefacts/introduction.qmd
- part: Données de composition
chapters:
- chapters/coda/introduction.qmd
- chapters/coda/transformations.qmd
- chapters/coda/outliers.qmd
- part: Chronologie
chapters:
- chapters/chronology/introduction.qmd
- chapters/chronology/relative.qmd
- chapters/chronology/absolute.qmd
- part: Analyse spatiale
chapters:
- chapters/spatial/introduction.qmd
- part: Analyse de réseaux
chapters:
- chapters/network/introduction.qmd
- chapters/00-references.qmd
appendices:
- chapters/appendix/setup.qmd
- chapters/appendix/cheat_sheet.qmd
- chapters/appendix/good_practices.qmd
- chapters/appendix/style.qmd
- chapters/appendix/ggplot2.qmd
format:
html:
lang: fr
theme: cosmo
code-link: true
toc: true
number-sections: true
link-external-icon: true
license: CC BY-NC-SA
description: |
Ce livre s'adresse aux personnes qui souhaitent analyser, visualiser et
modéliser des données archéologiques à l'aide du langage R. Cet ouvrage
doit vous permettre d'acquérir les connaissances et les compétences
nécessaires pour aborder un large éventail de problèmes liés aux données
archéologiques.
mainfont: Atkinson Hyperlegible
include-in-header:
- head.html
pdf:
lang: fr
documentclass: scrbook
classoption:
- french
- 12pt
- a4paper
- twoside
include-in-header: latex/preamble.tex
include-before-body: latex/before_body.tex
include-after-body: latex/after_body.tex
pdf-engine: lualatex
toc: true
lof: true
lot: true
toc-depth: 2
toc-title: Sommaire
editor: source
execute:
freeze: auto
knitr:
opts_chunk:
echo: true
collapse: true
comment: "#>"
dpi: 300
out-width: "100%"
fig-align: "center"
fig-width: 7
fig-height: 5
width: 68