-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_data.Rmd
89 lines (72 loc) · 2.47 KB
/
make_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
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
---
title: "Preparing the data"
csl: the-american-naturalist.csl
output:
html_document:
theme: cerulean
toc: yes
pdf_document:
toc: yes
<!-- bibliography: references.bib -->
---
<!--
IMAGES:
Insert them with: ![alt text](image.png)
You can also resize them if needed: convert image.png -resize 50% image.png
If you want to center the image, go through HTML code:
<div style="text-align:center"><img src ="image.png"/></div>
REFERENCES:
For references: Put all the bibTeX references in the file "references.bib"
in the current folder and cite the references as @key or [@key] in the text.
Uncomment the bibliography field in the above header and put a "References"
title wherever you want to display the reference list.
-->
<style type="text/css">
.main-container {
max-width: 1370px;
margin-left: auto;
margin-right: auto;
}
</style>
```{r general options, include = FALSE}
knitr::knit_hooks$set(
margin = function(before, options, envir) {
if (before) par(mgp = c(1.5, .5, 0), bty = "n", plt = c(.105, .97, .13, .97))
else NULL
},
prompt = function(before, options, envir) {
options(prompt = if (options$engine %in% c("sh", "bash")) "$ " else "> ")
})
knitr::opts_chunk$set(margin = TRUE, prompt = TRUE, comment = "",
collapse = TRUE, cache = FALSE, autodep = TRUE,
dev.args = list(pointsize = 11), fig.height = 3.5,
fig.width = 4.24725, fig.retina = 2, fig.align = "center")
options(width = 137)
```
## Packages
Installing the required packages:
```{r}
required <- c("magrittr", "readr")
to_install <- setdiff(required, row.names(installed.packages()))
if (length(to_install)) install.packages(to_install)
```
Loading `magrittr`:
```{r}
library(magrittr)
```
## Loading the data ViParc data
```{r}
viparc <- readr::read_csv("https://raw.githubusercontent.com/viparc/clires_data/master/data/viparc.csv",
col_types = paste(c("ciillidddllllll", rep("d", 45)), collapse = ""))
```
## Transforming the AMU into qualitative information
If you want to transform the data regarding AMU into qualitative information,
here is the way to do:
```{r}
if (!dir.exists("data")) dir.create("data")
viparc %>%
dplyr::mutate_at(dplyr::vars(dplyr::ends_with("_g")), list(~ . > 0)) %>%
dplyr::rename_at(dplyr::vars(dplyr::ends_with("_g")), function(x) sub("_g$", "_use", x)) %>%
dplyr::select(-completed, -sampling) %>%
write.csv("data/viparc_qualitative.csv", FALSE, row.names = FALSE)
```