Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 468 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 468 Bytes

rfeb

rfeb provides a set of tools for scraping and analyzing basketball data from Spain's FEB leagues.

Installation

# install.packages("devtools")
devtools::install_github("solmos/rfeb")

Examples

library(rfeb)
library(ggplot2)
game_ids <- 2010208:2010216
shots <- extract_shots(game_ids)
plot_shotchart(shots, color = made) +
    facet_wrap(~game_id)