-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy path03-Tibbles.R
171 lines (107 loc) · 3.64 KB
/
03-Tibbles.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
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
# Purpose of this tutorial
# Understand the Manipulation of Tables with Tidyverse tools
# - `select()` et `filter()`, qui permettent de selectionner des colonnes et des lignes d'un jeu de données
# - `arrange()`, qui vous permet de réordonner les lignes d'un jeu de données
# - `%>%`, qui organise votre code sous la forme de "pipes" faciles à déchiffer (un pipe peut être vu comme un flux dans lequel divers traitements sur les données sont enchaînés)
# - `mutate()`, `group_by()`, et `summarize()`, servent à calculer des statistiques descriptives
# Load the packages
library(tidyverse)
# Load the Data.
data <- read_csv2('data/taille.csv')
data
# Select function ----
## Select the different columns of the data
## Exclusion of the columns
## Selection of range of columns
## Columns that contains a string
## Columns that starts with a string
## Columns that ends with a string
# Filter function ----
?filter
## Logical operators
# == (Equal to)
# != (Not equal to)
# < (Less than)
# <= (Less than or equal to)
# > (Greater than)
# >= (Greater than or equal to)
filter(data, nom == "Benjamin")
filter(data, nom != "Benjamin")
## Combination of logical tests
# - & (logical AND) --> Est-ce que les conditionsA et B sont toutes les deux vraies ?
# - | (logical OR) --> Est-ce que l’ une ou les deux conditions A et B sont vraies ?
# - ! (logical NOT) --> Est-ce que A n’est pas vraie ?
# - %in% --> Est-ce que x est dans l’ensemble a, b, et c ?
test <- filter(data, name == "Fabio" & year == 2018)
# Arrange function ----
?arrange
# Slice ----
slice(data, 1)
## Selection of Man, taille > 170,
test <- filter(data, taille > 160, sexe == "H")
test <- arrange(test, grade)
test <- slice(test, 1:3)
ggplot(test) +
aes(x = nom, y = poids) +
geom_bar(stat = 'identity')+
coord_flip()
# Pipe operator ----
## Shorcut: Ctr/Cmd + Shift + M
data %>%
filter(taille > 160, sexe == "H") %>%
arrange(desc(grade)) %>%
slice(1:3) %>%
ggplot() +
aes(x = nom, y = poids) +
geom_bar(stat = 'identity')+
coord_flip()
# Derivate Information
## `mutate()`, `group_by()`, et `summarise()`, qui permettent d'utiliser vos données pour calculer de nouvelles variables et des statistiques récapitulatives
# Summarise() fonctions ----
?summarise
data %>%
filter(sexe == "H") %>%
summarise(total = n(),
max = max(taille),
moyenne = mean(taille))
data %>%
filter(sexe == "F") %>%
summarise(total = n(),
max = max(taille),
moyenne = mean(taille))
# group_by() -----
data %>%
group_by(sexe) %>%
summarise(total = n())
data %>%
group_by(year, sex) %>%
summarise(total = sum(n)) %>%
summarise(total = sum(total))
# Mutate() ---
data %>%
mutate(IMC = poids/taille^2)
# Exercise: Plotting your Name
library(prenoms)
prenoms <- prenoms_france
## Exercise: Determinez les 10 prenomz masculins le plus utilisés de l'annee 2018
## Exercise: Pouvez-vous faire une graphique avec la quantite de personnes par annee
## avec votre prenom?
prenoms %>%
filter(name == "Fabio", sex == "M") %>%
ggplot() +
aes(x = year, y = n) +
geom_line() +
labs(title = "Popularité du prénom Fabio en France") +
theme_minimal()
# Exercise: Compare your name with other that you want
prenoms %>%
filter(name == "Fabio" | name == "Mauricio") %>%
ggplot() +
aes(x = year, y = n, color = name) +
geom_line() +
labs(title = "Popularité du prénom Fabio en France") +
theme_minimal()
boys_2018 <- filter(prenoms, year == 2018, sex == "M")
boys_2018 <- select(boys_2018, name, n)
boys_2018 <- arrange(boys_2018, desc(n))
boys_2018