-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathREADME.Rmd
71 lines (45 loc) · 2.63 KB
/
README.Rmd
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
# Please put your title here to include it in the file below.
Title <- "CESAB datatoolbox Workshop exercices"
```
# datatoolboxexos
This repository contains the code and data I used during the datatoolbox CESAB workshop exercices. The courses and exercices of the workshop are obtainable [here](https://github.com/FRBCesab/datatoolbox).
### How to cite
Please cite this compendium as:
> Authors, (`r format(Sys.Date(), "%Y")`). _Compendium of R code and data for `r Title`_. Accessed `r format(Sys.Date(), "%d %b %Y")`. Online at [https://github.com/FRBCesab/datatoolboxexos](https://github.com/FRBCesab/datatoolboxexos)
## Contents
The [**data**](data/) directory contains the data sets used in the analyses. There is a `README` in that directory that describes the data sets.
The [**exercices**](exercices/) directory contains and `.Rmd` file for each exercice:
- [::spiral\_notepad:: exo_dplyr](/exercices/exo_dplyr.Rmd)
- [::spiral\_notepad:: exo_ggplot2](/exercices/exo_ggplot2.Rmd)
Each R Markdown source document for the exercices includes code to reproduce the figures and tables generated by the analyses. They also have rendered versions, `.md` and `html` suitable respectively for reading on github and in a web browser:
- [::spiral\_notepad:: exo_dplyr](/exercices/exo_dplyr.md)
- [::spiral\_notepad:: exo_ggplot2](/exercices/exo_ggplot2.md)
- [::spiral\_notepad:: exo_dplyr](/exercices/exo_dplyr.html)
- [::spiral\_notepad:: exo_ggplot2](/exercices/exo_ggplot2.html)
## How to run it ?
This research compendium has been developed using the statistical programming
language R. To work with the compendium, you will need
installed on your computer the [R software](https://cloud.r-project.org/)
itself and optionally [RStudio Desktop](https://rstudio.com/products/rstudio/download/).
You can download the compendium as a zip from from this URL:
[master.zip](/archive/master.zip). After unzipping:
- open the `.Rproj` file in RStudio
- open `make.R` and source it to ensure you have the packages these analyses depends on (also listed in the [DESCRIPTION](/DESCRIPTION) file under `Imports`) and produce the reports for all the exercercices.
### Licenses
**Text and figures :** [CC-BY-4.0](http://creativecommons.org/licenses/by/4.0/)
**Code :** See the [DESCRIPTION](DESCRIPTION) file
**Data :** [CC-0](http://creativecommons.org/publicdomain/zero/1.0/) attribution requested in reuse
## Session Info
```{r}
utils::sessionInfo()
```