Nothing
cols <- c(
"venue_id", "name", "capacity", "grass", "city", "state",
"zip", "country_code", "latitude", "longitude", "elevation", "year_constructed",
"dome", "timezone"
)
test_that("CFB Venues", {
skip_on_cran()
x <- cfbd_venues()
if (is.null(x) || !is.data.frame(x) || nrow(x) == 0L) {
skip("CFBD rate-limited or returned no rows")
}
expect_setequal(ncol(x), length(cols))
expect_setequal(colnames(x), cols)
expect_s3_class(x, "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.