The goal of ncaascrapR
is to provide the community with an R package for working with NCAA Sports data. An R package for working with NCAA Data. It is a scraping and aggregating interface for the Data and Stats portals of the NCAA website.
You can install the released version of ncaascrapR
from GitHub with:
# You can install using the pacman package using the following code:
if (!requireNamespace('pacman', quietly = TRUE)){
install.packages('pacman')
}
pacman::p_load_current_gh("ehess/ncaascrapR")
# if you would prefer devtools installation
if (!requireNamespace('devtools', quietly = TRUE)){
install.packages('devtools')
}
# Alternatively, using the devtools package:
devtools::install_github(repo = "ehess/ncaascrapR")