-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtidy_data.Rmd
More file actions
184 lines (114 loc) · 3.69 KB
/
Copy pathtidy_data.Rmd
File metadata and controls
184 lines (114 loc) · 3.69 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
---
title: 'Tidy data'
# subtitle: ''
author: 'Francisco Rodriguez-Sanchez'
institute: 'https://frodriguezsanchez.net'
# date: '@frod_san'
aspectratio: 43
fontsize: 10pt
output:
binb::metropolis:
keep_tex: no
pandoc_args: ['--lua-filter=hideslide.lua']
urlcolor: blue
linkcolor: blue
header-includes:
- \definecolor{shadecolor}{RGB}{230,230,230}
# - \setbeamercolor{frametitle}{bg=black}
---
```{r include=FALSE, cache=FALSE}
library('knitr')
### Chunk options ###
## Text results
opts_chunk$set(echo = FALSE, eval = TRUE, warning = FALSE, message = FALSE, size = 'tiny')
opts_template$set(fig = list(echo = FALSE, eval = TRUE))
## Code decoration
opts_chunk$set(tidy = FALSE, comment = NA, highlight = TRUE, prompt = FALSE, crop = TRUE)
# ## Cache
# opts_chunk$set(cache = TRUE, cache.path = 'knitr_output/cache/')
# ## Plots
# opts_chunk$set(fig.path = 'knitr_output/figures/')
opts_chunk$set(fig.align = 'center', out.width = '90%')
### Hooks ###
## Crop plot margins
knit_hooks$set(crop = hook_pdfcrop)
## Reduce font size
## use tinycode = TRUE as chunk option to reduce code font size
# see http://stackoverflow.com/a/39961605
knit_hooks$set(tinycode = function(before, options, envir) {
if (before) return(paste0('\n \\', options$size, '\n\n'))
else return('\n\n \\normalsize \n')
})
```
## Tidy data
```{r out.width='100%'}
include_graphics('images/tidydata.png')
```
```{r out.width='100%'}
include_graphics('images/gatherdata.png')
```
\scriptsize
https://r4ds.hadley.nz/data-tidy.html
\normalsize
## Be careful with data entry and management in Excel!
```{r}
include_graphics('images/excel-genes.png')
```
---
```{r out.width='100%'}
include_graphics('images/tabular_data.png')
```
\raggedright
\tiny [Hertz & McNeill 2024](https://doi.org/10.1371/journal.pcbi.1012604)
\raggedleft
## Spreadsheet good practices
\scriptsize
> - Put **variables** in **columns** (things you are measuring: height, weight, sex)
> - Each **observation** in one **row** (e.g. individuals).
> - **Avoid** spaces, numbers, and **special characters** in column names.
> - Always **write zero values**, to distinguish from blank/missing data.
> - Use blank/empty cells, or NA, for missing data.
> - Input dates as **year, month, day** in separate columns. Or **YYYY-MM-DD** as text.
> - Use **[Data validation](http://bit.ly/excel_dataval)** in Excel (or GForms) to constrain data entry to accepted values.
> - Don't combine multiple pieces of information in one cell.
> - **Don't touch raw data**. Do all data manipulation through code.
> - Export data as plain text (txt, csv).
> - http://www.datacarpentry.org/spreadsheet-ecology-lesson/
> - http://kbroman.org/dataorg/
> - Broman & Woo: [Data organization in spreadsheets](https://doi.org/10.1080/00031305.2017.1375989)
# Common spreadsheet errors
## More than one variable per column
:::::::::::::: {.columns align=center}
::: {.column width='40%'}
```{r out.width='2in'}
include_graphics('images/DC-multiple-info.png')
```
:::
::: {.column width='60%' }
```{r out.width='2in'}
include_graphics('images/DC-single-info.png')
```
:::
::::::::::::::
Source: Data Carpentry
## Multiple tables
```{r out.width='4in'}
include_graphics('images/DC_datasheet_example.jpg')
```
Could you avoid new tab by adding a column to original spreadsheet?
## Using formatting, comments, etc to convey information
:::::::::::::: {.columns align=center}
::: {.column width='40%'}
```{r out.width='2in'}
include_graphics('images/DC-formatting.png')
```
:::
::: {.column width='60%' }
```{r out.width='2in'}
include_graphics('images/DC_good_formatting.png')
```
:::
::::::::::::::
----
Your turn: tidy up this messy dataset
https://ndownloader.figshare.com/files/2252083