forked from larmarange/analyse-R
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgestion-des-dates.Rmd
More file actions
18 lines (13 loc) · 815 Bytes
/
gestion-des-dates.Rmd
File metadata and controls
18 lines (13 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
title: "Gestion des dates"
---
```{r options_communes, include=FALSE, cache=FALSE}
source("options_communes.R")
```
<div class="guide-R">
Une version actualisée de ce chapitre est disponible sur **guide-R** : [Dates avec lubridate](https://larmarange.github.io/guide-R/manipulation_avancee/dates.html)
</div>
Si R fournit quelques fonctions natives pour la gestion des dates, l'extension `lubridate`{.pkg} est recommandée pour tout travail un peu plus fin sur des dates. On pourra se référer :
- au chapitre <q>Dates and Times</q> de l'ouvrage *R for Data Science* de Garrett Grolemund et Hadley Wickham (en anglais)
- à la vignette officielle (<https://cran.r-project.org/web/packages/lubridate/vignettes/lubridate.html>, en anglais)
- à ce tutoriel (<https://rpubs.com/davoodastaraky/lubridate>)