Nothing
#' Get repositories for the packages.
#'
#' Ensures a default CRAN is set if one is not already set, and adds the repository for
#' fivethirtyeightdata.
#'
#' @param repos Optionally set a repository character vector to augment.
#'
#' @return A set of repositories that can be used to install or update the CourseKata packages.
#'
#' @export
#' @examples
#' coursekata_repos()
coursekata_repos <- function(repos = getOption("repos")) {
if (is.na(repos["CRAN"])) repos["CRAN"] <- "https://cloud.r-project.org"
c(repos, fivethirtyeight = "https://fivethirtyeightdata.github.io/drat/")
}
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.