The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
The goal of cfbfastR
is to provide the community with an R package for working with CFB data.
It is an R API wrapper around https://collegefootballdata.com/. Beyond data
aggregation and tidying ease, one of the multitude of services that cfbfastR
provides is for benchmarking open-source expected points and win
probability metrics.
You can install the CRAN version of cfbfastR
with:
install.packages("cfbfastR")
You can install the released version of cfbfastR
from GitHub
with:
# You can install using the pacman package using the following code:
if (!requireNamespace('remotes', quietly = TRUE)){
install.packages('remotes', repos = "https://cloud.r-project.org")
}::install_github("sportsdataverse/cfbfastR") remotes
The CollegeFootballData API now requires an API key, here’s a quick run-down:
To get an API key, follow the directions here: College Football Data Key Registration.
Using the key: You can save the key for consistent usage by
adding CFBD_API_KEY=YOUR-API-KEY-HERE
to your .Renviron
file (easily accessed via usethis::edit_r_environ()
).
Run usethis::edit_r_environ()
,
a new script will pop open named .Renviron
,
THEN paste the following in the new script that pops up
(without quotations)
= YOUR-API-KEY-HERE CFBD_API_KEY
Save the script and restart your RStudio session, by clicking
Session
(in between Plots
and
Build
) and click Restart R
(there also exists
the shortcut Ctrl + Shift + F10
to restart your session).
If set correctly, from then on you should be able to use any of the
cfbd_
functions without any other changes.
CFBD_API_KEY
(with quotations) using a command like the
following.Sys.setenv(CFBD_API_KEY = "YOUR-API-KEY-HERE")
cfbscrapR
[archived]To cite the cfbfastR
R package in publications, use:
BibTex Citation
@misc{gilani_et_al_2021_cfbfastr,
author = {Saiem Gilani and Akshay Easwaran and Jared Lee and Eric Hess},
title = {cfbfastR: The SportsDataverse's R Package for College Football Data.},
url = {https://cfbfastR.sportsdataverse.org/},
year = {2021}
}
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.