This file contains 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
import pandas as pd | |
import numpy as np | |
import matplotlib.pyplot as plt |
This file contains 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
# Hecho con gusto para | |
# Twitter #DatosDeMiercoles por @R4DS_es | |
# Por Rafa @GonzalezGouveia | |
# CURSO de R con RSTUDIO en YOUTUBE --> https://bit.ly/2RRWUPl | |
library(tidyverse) | |
# install.packages("cranlogs") | |
library(cranlogs) | |
library(ggthemes) | |
library(ggrepel) |
This file contains 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
#################### | |
# # | |
# Copia todo esto! # | |
# # | |
#################### | |
# Hecho con gusto por Rafa @GonzalezGouveia | |
# Para aprender más sobre R | |
# Suscribete en YouTube https://bit.ly/2WNDhNR | |
# video 09 - listas |
This file contains 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
# Hecho con gusto para #DatosDeMiercoles, propuesto por @R4DS_es | |
# Por Rafa @GonzalezGouveia --> https://bit.ly/2Fnvc7V | |
library(tidyverse) | |
library(gganimate) | |
library(ggthemes) | |
capitulos_rladies <- readr::read_csv("https://bit.ly/2XxvcN2") | |
eventos_rladies <- readr::read_csv("https://bit.ly/2xcNXXj") | |
# colores del tema |
This file contains 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
# Hecho con gusto para #DatosDeMiercoles, propuesto por @R4DS_es | |
# Por Rafa @GonzalezGouveia --> https://bit.ly/2Fnvc7V | |
# intalar paquete (si no los tienes) | |
library(tidyverse) | |
library(ggthemes) | |
# install_packages("readr") | |
leyes <- readr::read_csv("https://bit.ly/2x8ygQR") | |
# creando dataframe para paises de hispanos-latinos |
This file contains 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
#################### | |
# # | |
# Copia todo esto! # | |
# # | |
#################### | |
# Hecho con gusto por Rafa @GonzalezGouveia | |
# video 08 - dataframes | |
# Objetivo: estudiar qué son dataframes en R. |
This file contains 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
# Empieza el código # | |
##################### | |
# intalar paquete (si no los tienes) | |
install.packages('tidiverse') | |
install.packages('trelliscopejs') | |
# cargar estas librerias | |
library(tidyverse) | |
library(trelliscopejs) |
This file contains 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(tm) | |
library(SnowballC) | |
library(wordcloud) | |
library(RColorBrewer) | |
library(tidyverse) | |
library(ggwordcloud) | |
# Hecho por Rafa @GonzalezGouveia | |
# Con gusto para #DatosDeMiercoles, propuesto por @R4DS_es |
This file contains 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 07 - factores | |
# Objetivo: estudiar qué son factores en R. |
This file contains 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(maps) | |
library(ggthemes) | |
library(tidyverse) | |
library(gganimate) | |
# Hecho por Rafa @GonzalezGouveia | |
# Con gusto para #DatosDeMiercoles, propuesto por @R4DS_es | |
# leyendo los datos | |
terremotos <- readr::read_csv("https://raw.githubusercontent.com/cienciadedatos/datos-de-miercoles/master/datos/2019/2019-05-29/terremotos.csv") |
NewerOlder