Nothing
cols <- c(
"year",
"team",
"conference",
"fpi",
"resume_ranks_strength_of_record",
"resume_ranks_fpi",
"resume_ranks_average_win_probability",
"resume_ranks_strength_of_schedule",
"resume_ranks_remaining_strength_of_schedule",
"resume_ranks_game_control",
"efficiencies_overall",
"efficiencies_offense",
"efficiencies_defense",
"efficiencies_special_teams"
)
test_that("CFBD ESPN FPI ratings", {
skip_on_cran()
x <- cfbd_ratings_fpi(year = 2019, team = "Texas")
if (is.null(x) || !is.data.frame(x) || nrow(x) == 0L) {
skip("CFBD rate-limited or returned no rows")
}
y <- cfbd_ratings_fpi(year = 2018, conference = "SEC")
if (is.null(y) || !is.data.frame(y) || nrow(y) == 0L) {
skip("CFBD rate-limited or returned no rows")
}
z <- cfbd_ratings_fpi(year = 2013, conference = "ACC")
if (is.null(z) || !is.data.frame(z) || nrow(z) == 0L) {
skip("CFBD rate-limited or returned no rows")
}
expect_setequal(colnames(x), cols)
expect_setequal(colnames(y), cols)
expect_setequal(colnames(z), cols)
expect_s3_class(x, "data.frame")
expect_s3_class(y, "data.frame")
expect_s3_class(z, "data.frame")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.