This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(gganimate) | |
library(ggrepel) | |
library(ggthemes) | |
# Hecho por Rafa @GonzalezGouveia | |
# Con gusto para #DatosDeMiercoles, propuesto por @R4DS_es | |
# colores del tema | |
ltgray <- "#cccccc" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################### | |
# # | |
# Copiar todo esto # | |
# # | |
#################### | |
# Hecho con gusto por Rafa @GonzalezGouveia | |
# video 06 - matrices | |
# Objetivo: estudiar qué es una matriz en R. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(plotly) | |
library(ggthemes) | |
# devtools::install_github('rensa/ggflags') | |
library(ggflags) | |
# Hecho por Rafa @GonzalezGouveia | |
# Con gusto para #DatosDeMiercoles, propuesto por @R4DS_es | |
# suponiendo que ya tenemos los datos en un csv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(ggthemes) | |
# Hecho por Rafa @GonzalezGouveia | |
# Con gusto para #DatosDeMiercoles, propuesto por @R4DS_es | |
# descargando datos | |
datos_uip <- readr::read_csv("https://raw.githubusercontent.com/cienciadedatos/datos-de-miercoles/master/datos/2019/2019-05-08/datos_uip.csv") | |
# cuantos paises tienen informacion de cuota |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################### | |
# # | |
# Copiar todo esto # | |
# # | |
#################### | |
# Hecho con gusto por Rafa @GonzalezGouveia | |
# video 05 - vectores | |
# Objetivo: estudiar qué es una vector en R. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################### | |
# # | |
# Copiar todo esto # | |
# # | |
#################### | |
# Hecho con gusto por Rafa @GonzalezGouveia | |
# video 06 - matrices | |
# Objetivo: estudiar qué es una matriz en R. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################### | |
# # | |
# Copiar todo esto # | |
# # | |
#################### | |
# Hecho con gusto por Rafa @GonzalezGouveia | |
# video 05 - vectores | |
# Objetivo: estudiar qué es una vector en R. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(gganimate) | |
# devtools::install_github('rensa/ggflags') | |
library(ggflags) # https://github.com/rensa/ggflags | |
library(ggthemes) | |
# Hecho por Rafa @GonzalezGouveia | |
# Con gusto para #DatosDeMiercoles, propuesto por @R4DS_es | |
# leyendo los datos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################### | |
# # | |
# Copiar todo esto # | |
# # | |
#################### | |
# Hecho con gusto por Rafa @GonzalezGouveia | |
# video 04 - variables | |
# Objetivo: estudiar qué es una variable en R. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
# devtools::install_github('rensa/ggflags') | |
library(ggflags) # https://github.com/rensa/ggflags | |
library(ggrepel) | |
library(ggthemes) | |
library(gganimate) | |
# Hecho por Rafa @GonzalezGouveia | |
# Con gusto para #DatosDeMiercoles, propuesto por @R4DS_es |