Nothing
# reversed so that most important packages are loaded last (and mask earlier ones)
coursekata_pkgs <- rev(c(
"supernova", "mosaic", "lsr", "Metrics",
"fivethirtyeight", "fivethirtyeightdata", "Lock5withR", "dslabs"
))
#' List all CourseKata course packages
#'
#' @param check_remote_version Should the remote version number be checked? Requires internet, and
#' will take longer.
#'
#' @return A data frame with three variables: the name of the package `package`, the `version`, and
#' whether it is currently `attached`.
#'
#' @export
#' @examples
#' coursekata_packages()
coursekata_packages <- function(check_remote_version = FALSE) {
pkgs <- coursekata_pkgs
info <- data.frame(
package = pkgs,
installed = pkg_is_installed(pkgs),
attached = pkg_is_attached(pkgs),
version = pkg_version(pkgs),
stringsAsFactors = FALSE
)
if (check_remote_version) {
info$remote_version <- pkg_remote_version(pkgs)
info$behind <- info$version < info$remote_version
}
info
}
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.