-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy path_quarto.yml
More file actions
130 lines (125 loc) · 5.34 KB
/
Copy path_quarto.yml
File metadata and controls
130 lines (125 loc) · 5.34 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
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
project:
type: website
output-dir: _public
# Comment first lines to make faster previews
render:
- index.qmd
- "01_R_Insee/*.qmd"
- "02_Bonnes_pratiques/*.qmd"
- "03_Fiches_thematiques/*.qmd"
- "!04_misc/"
- "!cards/"
- "!rv/"
comments:
hypothesis: true
website:
title: "utilitR"
favicon: resources/logo-utilitr.png
repo-url: https://github.com/InseeFrLab/utilitR
repo-actions: [edit, issue]
repo-branch: main
page-footer:
right: |
<li><a href="https://github.com/InseeFrLab/utilitR.git" target="blank">Code source</a></li>
left: |
This book was built with <a href="https://quarto.org/">Quarto</a>.
# Navigation : tout passe par la navbar en haut (menus déroulants), pas de sidebar.
navbar:
search: true
logo: resources/logo-utilitr.png
logo-alt: "Logo du projet utilitR"
collapse-below: lg
left:
- text: "Introduction"
menu:
- text: "Présentation du projet utilitR"
href: 01_R_Insee/presentation_utilitr.qmd
- text: "Comment utiliser la documentation utilitR"
href: 01_R_Insee/Fiche_utiliser_utilitR.qmd
- text: "Commencer son projet"
menu:
- text: "Utiliser les projets RStudio"
href: 03_Fiches_thematiques/Fiche_rprojects.qmd
- text: "Utiliser Git avec RStudio"
href: 03_Fiches_thematiques/Fiche_git_utilisation.qmd
- text: "Utiliser des packages R"
href: 01_R_Insee/Fiche_installer_packages.qmd
- text: "Comment choisir un package ?"
href: 03_Fiches_thematiques/Fiche_comment_choisir_un_package.qmd
- text: "Gérer les dépendances"
href: 03_Fiches_thematiques/Fiche_gerer_dependances.qmd
- text: "Se documenter sur R"
href: 03_Fiches_thematiques/Fiche_se_documenter.qmd
- text: "Résoudre un problème avec R"
href: 03_Fiches_thematiques/Fiche_resoudre_un_probleme.qmd
- text: "Chaîne de traitement avec targets"
href: 03_Fiches_thematiques/Fiche_targets.qmd
- text: "Importer des données"
menu:
- text: "Importer des fichiers plats (csv, tsv, txt)"
href: 03_Fiches_thematiques/Fiche_import_fichiers_plats.qmd
- text: "Importer des tables SAS"
href: 03_Fiches_thematiques/Fiche_import_tables_sas.qmd
- text: "Importer des tableurs (Excel, Calc)"
href: 03_Fiches_thematiques/Fiche_import_tableurs.qmd
- text: "Lire et écrire des fichiers Parquet"
href: 03_Fiches_thematiques/Fiche_import_fichiers_parquet.qmd
- text: "Travailler avec des API"
href: 03_Fiches_thematiques/Fiche_api.qmd
- text: "Se connecter à une base de données"
href: 03_Fiches_thematiques/Fiche_connexion_bdd.qmd
- text: "Manipuler des données"
menu:
- text: "Manipuler avec le tidyverse"
href: 03_Fiches_thematiques/Fiche_tidyverse.qmd
- text: "Manipuler avec data.table"
href: 03_Fiches_thematiques/Fiche_datatable.qmd
- text: "Manipuler avec arrow"
href: 03_Fiches_thematiques/Fiche_arrow.qmd
- text: "Manipuler avec duckdb"
href: 03_Fiches_thematiques/Fiche_duckdb.qmd
- text: "Joindre des tables de données"
href: 03_Fiches_thematiques/Fiche_joindre_donnees.qmd
- text: "Manipuler des données textuelles"
href: 03_Fiches_thematiques/Fiche_donnees_textuelles.qmd
- text: "Utiliser des données d'enquêtes"
href: 03_Fiches_thematiques/Fiche_survey.qmd
- text: "Manipuler des données spatiales"
href: 03_Fiches_thematiques/Fiche_donnees_spatiales.qmd
- text: "Manipuler des données temporelles"
href: 03_Fiches_thematiques/Fiche_donnees_temporelles.qmd
- text: "L'analyse de données (ACP, ACM…)"
href: 03_Fiches_thematiques/Fiche_analyse_de_donnees.qmd
- text: "Produire des sorties"
menu:
- text: "Faire des graphiques avec ggplot2"
href: 03_Fiches_thematiques/Fiche_graphiques.qmd
- text: "Produire des documents avec R Markdown"
href: 03_Fiches_thematiques/Fiche_rmarkdown.qmd
- text: "Rapports automatisés avec R Markdown"
href: 03_Fiches_thematiques/Fiche_rmarkdown_param_report.qmd
- text: "Bonnes pratiques"
menu:
- text: "Qualité du code"
href: 02_Bonnes_pratiques/01-qualite-code.qmd
- text: "Structure des projets"
href: 02_Bonnes_pratiques/02-structure-code.qmd
- text: "Configuration"
menu:
- text: "Utiliser RStudio sur AUSv3"
href: 01_R_Insee/Fiche_utiliser_Rstudio_AUSv3.qmd
- text: "Configurer Git sur son poste"
href: 03_Fiches_thematiques/Fiche_configurer_git.qmd
- text: "Personnaliser la configuration de R"
href: 01_R_Insee/Fiche-personnaliser-R.qmd
- text: "Superviser sa session R"
href: 01_R_Insee/Fiche_utiliser_ressources.qmd
format:
html:
theme:
light: [cosmo, css/style.css, css/style-utilitr.css, css/style.scss]
dark: [darkly, css/style.css, css/style-utilitr.css, css/style.scss]
code-link: true
code-copy: true
code-overflow: wrap
toc: true