-
Notifications
You must be signed in to change notification settings - Fork 0
/
readability.R
60 lines (43 loc) · 1.16 KB
/
readability.R
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
# libraries ---------------------------------------------------------------
library(tidyverse)
library(nycflights13)
# code readability --------------------------------------------------------
flights %>%
glimpse
flights %>%
filter(year == 2013,
month == 5,
day == 4) %>%
drop_na %>%
group_by(hour, origin) %>%
summarise(distance = mean(distance),
count = n(),
.groups = "drop") %>%
ggplot(aes(hour, distance, fill = origin)) +
geom_col()
# add-on ------------------------------------------------------------------
# base R has a pipe now too -----------------------------------------------
flights |>
filter(year == 2013,
month == 5,
day == 4) |>
drop_na() |>
group_by(hour, origin) |>
summarise(distance = mean(distance),
count = n(),
.groups = "drop") |>
ggplot(aes(hour, distance, fill = origin)) +
geom_col()
# differences -------------------------------------------------------------
mtcars %>%
lm(mpg ~ hp, data = .)
mtcars |>
lm(mpg ~ hp, data = .)
mtcars |>
lm(mpg ~ hp, data = _)
mtcars %>%
glimpse
mtcars |>
glimpse
mtcars |>
glimpse()