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
#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 |
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
# 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 |
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
--- | |
title: "R Notebook" | |
output: html_notebook | |
--- | |
```{r} | |
library(dplyr) | |
library(Lahman) | |
library(knitr) | |
library(kableExtra) |