Nothing
#' Pre-clean CRAN Logs.
#'
#' package and size NAs; package size = 0
#' @param cran_log Object.
#' @noRd
cleanLog <- function(cran_log) {
sel <- !is.na(cran_log$package) & !is.na(cran_log$size) & cran_log$size != 0
cran_log[sel, ]
}
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.