-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnetflix.R
189 lines (169 loc) · 5.59 KB
/
netflix.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# ----- CASO PRÁCTICO: BARRAS DE NETFLIX
# ----- Preprocesamiento -----
# Carga datos
netflix <-
read_csv('https://raw.githubusercontent.com/elartedeldato/datasets/main/netflix_titles.csv')
netflix
# Filtramos solo películas que tengan "HIGH SCHOOL" en la descripción
# con str_detect detectamos si contiene el patrón
# con toupper pasamos a mayúsculas
netflix_hs <- netflix %>%
filter(str_detect(toupper(description), "HIGH SCHOOL"))
netflix_hs
# Eliminamos registros con ausente en fecha de estreno en netflix
netflix_filtro <-
netflix_hs %>% filter(!is.na(date_added))
# Preprocesamos fecha para obtener el año
library(lubridate)
mdy("August 26, 2016")
mdy("January 13, 2015")
netflix_final <-
netflix_filtro %>%
mutate(year = year(mdy(date_added)))
# Contamos número de películas por años
netflix_resumen <-
netflix_final %>%
group_by(year) %>% #<<
count() %>%
ungroup() #<<
netflix_resumen
# ----- Diagrama de barras -----
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
ggplot(netflix_resumen,
aes(x = year, y = n)) +
geom_col()
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
# Color: rojo fijo
ggplot(netflix_resumen,
aes(x = year, y = n)) +
geom_col(fill = "red") #<<
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
# Color: rojo fijo
# Fijamos las marcas del eje x para que muestre todos los años
ggplot(netflix_resumen,
aes(x = year, y = n)) +
geom_col(fill = "red") +
scale_x_continuous(breaks = netflix_resumen$year) #<<
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
# Color: rojo fijo
# Títulos, subtítulos y caption
ggplot(netflix_resumen,
aes(x = year, y = n)) +
geom_col(fill = "red") +
scale_x_continuous(breaks = netflix_resumen$year) +
labs(title = "NETFLIX", #<<
subtitle = "Películas y series de instituto",
caption =
"Basada en El Arte del Dato (https://elartedeldato.com) | Datos: Kaggle")
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
# Color: rojo fijo
# Títulos, subtítulos y caption
# Fuente propia
# Tema: sin leyenda / fuentes y colores título
library(sysfonts)
library(showtext)
font_add_google(family = "Bebas Neue",
name = "Bebas Neue")
showtext_auto()
gg <- ggplot(netflix_resumen, aes(x = year, y = n)) +
geom_col(fill = "red") +
scale_x_continuous(breaks = netflix_resumen$year) +
theme_minimal() + # lo inicializamos en lo mínimo, también hay theme_void()
theme(legend.position = "none",
plot.title =
element_text(family = "Bebas Neue",
color = "red", size = 80)) +
labs(title = "NETFLIX",
subtitle = "Películas y series de instituto",
caption = "Basada en El Arte del Dato (https://elartedeldato.com) | Datos: Kaggle")
gg
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
# Color: rojo fijo
# Títulos, subtítulos y caption
# Fuente propia
# Tema: sin leyenda / fuentes y colores título
# fondo de area de gráfica y general negra
gg <-
gg +
theme(panel.background = element_rect(fill = "black"),
plot.background =
element_rect(fill = "black", color = "black"))
gg
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
# Color: rojo fijo
# Títulos, subtítulos y caption
# Fuente propia
# Tema: sin leyenda / fuentes y colores título
# fondo de area de gráfica y general negra
# grid: sin grid en el eje X, solo con grid principal fino en el y
gg <- gg +
theme(panel.grid.major.y =
element_line(size = 0.1, color = "white"),
panel.grid.minor.y = element_blank(),
panel.grid.major.x = element_blank(),
panel.grid.minor.x = element_blank())
gg
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
# Color: rojo fijo
# Títulos, subtítulos y caption
# Fuente propia
# Tema: sin leyenda / fuentes y colores título
# fondo de area de gráfica y general negra
# grid: sin grid en el eje X, solo con grid principal fino en el y
# fuente textos
font_add_google(family = "Permanent Marker",
name = "Permanent Marker")
showtext_auto()
gg <- gg +
theme(plot.subtitle =
element_text(family = "Permanent Marker",
size = 21, color = "white"),
plot.caption =
element_text(family = "Permanent Marker",
color = "white", size = 19),
axis.text =
element_text(size = 15,
family = "Permanent Marker",
color = "white"))
gg
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
# Color: rojo fijo
# Títulos, subtítulos y caption
# Fuente propia
# Tema: sin leyenda / fuentes y colores título
# fondo de area de gráfica y general negra
# grid: sin grid en el eje X, solo con grid principal fino en el y
# fuente textos
# márgenes
gg <- gg +
theme(plot.margin =
margin(t = 4, r = 4,
b = 4, l = 8, "pt"))
gg
# Barras: geom_col
# Mapeado: x --> year, y --> n (frecuencia)
# Color: rojo fijo
# Títulos, subtítulos y caption
# Fuente propia
# Tema: sin leyenda / fuentes y colores título
# fondo de area de gráfica y general negra
# grid: sin grid en el eje X, solo con grid principal fino en el y
# fuente textos
# márgenes
# anotaciones: texto y curva
gg <- gg +
annotate("text", label = "(hasta enero)", x = 2021, y = 11,
hjust = 0.3, vjust = 0, family = "Permanent Marker",
size = 5, color='white', angle = 20) +
annotate("curve", x = 2021, y = 9, xend = 2021, yend = 5,
color = "white")
gg