Skip to content

Instantly share code, notes, and snippets.

View darh78's full-sized avatar
🎯
Focusing

Daniel H darh78

🎯
Focusing
View GitHub Profile
#title: Overall rank of MLB teams in regular season
#output: html_document
# author: D. Hernández
#tags: [R, baseball, lahman, MLB, postseason]
# Loading packages
library(Lahman) # Data source
library(dplyr) # To ease the data manipulation
@darh78
darh78 / EUR12.R
Created October 18, 2017 22:28
EURIBOR 12 months
# Load required packages
library(Quandl)
library(dplyr, warn.conflicts = FALSE)
library(highcharter)
# Descarregar data de Quandl de Euribor a 12 meses
# https://www.quandl.com/data/BOF/QS_D_IEUTIO1A-EURIBOR-12-Months-Daily
EUR_12 <- tbl_df(Quandl("BOF/QS_D_IEUTIO1A", start_date = "2017-01-13"))
# Criar gráfico com cotações diarias do EURIBOR 12 meses
---
title: "R Notebook"
output: html_notebook
---
```{r}
library(dplyr)
library(Lahman)
library(knitr)
library(kableExtra)