-
Notifications
You must be signed in to change notification settings - Fork 27
/
data.Rmd
51 lines (32 loc) · 1.03 KB
/
data.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
% Data
## Raw data
The data were obtained from xx and were organized in xx excel/csv files. The example file is in the wide format where each day of assessment is in a different column, etc.
## Data wrangling
The original files were modified as following. The names of the variables were changed to.. The original wide format was retained and will be transformed using the dplyr functions, etc.
## Glimpse
```{r message=FALSE, warning=FALSE}
library(tidyverse)
data <- read_delim("data/data.csv", delim = ";")
glimpse(data)
```
## Description of variables
- Variable1:
- Description
- Type: character
- Unit
- Variable2:
- Description
- Type: integer
- Unit
- Variable3:
- Description
- Type: double
- Unit:
## Quick view
```{r}
data
```
## Download
The data are deposited in xx public repositories where they can be downloaded. Check on each data repository the policies regarding data use and citation.
<img src = "https://osf.io/static/img/circle_logo.png" width = "25">
[](DOI 10.17605/OSF.IO/7D3CH)