Nothing
cols <- c(
"year",
"athlete_id",
"athlete_name",
"position",
"team",
"conference",
"wepa",
"plays"
)
test_that("CFB Metrics Opponent Adjusted Players Rushing PPA", {
skip_on_cran()
x <- cfbd_metrics_wepa_players_rushing(year = 2019, team = "TCU")
if (is.null(x) || !is.data.frame(x) || nrow(x) == 0L) {
skip("CFBD rate-limited or returned no rows")
}
y <- cfbd_metrics_wepa_players_rushing(year = 2019, team = "Alabama")
if (is.null(y) || !is.data.frame(y) || nrow(y) == 0L) {
skip("CFBD rate-limited or returned no rows")
}
expect_setequal(colnames(x), cols)
expect_setequal(colnames(y), cols)
expect_s3_class(x, "data.frame")
expect_s3_class(y, "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.