#' List Kernels
#'
#' @param mine Display only my items
#' @param page Page number for results paging.
#' @param search Term(s) to search for
#' @param parent Find children of the specified parent kernel
#' @param competition Find kernels for a given competition
#' @param dataset Find kernels for a given dataset slug. Format is {username/dataset-slug}
#' @param size Number of kernels to list. Default size is 20, max is 100
#' @param user Find kernels created by a given user
#' @param language Specify the language the kernel is written in. Default is 'all'. Valid options are 'all', 'python', 'r', 'sqlite', and 'julia'
#' @param kernel_type Specify the type of kernel. Default is 'all'. Valid options are 'all', 'script', and 'notebook'
#' @param output_type Search for specific kernel output types. Default is 'all'. Valid options are 'all', 'visualizations', and 'data'
#' @param sort_by Sort list results. Default is 'hotness'. Valid options are 'hotness', 'commentCount', 'dateCreated', 'dateRun', 'relevance', 'scoreAscending', 'scoreDescending', 'viewCount', and 'voteCount'. 'relevance' is only applicable if a search term is specified.
#'
#' @examples
#' kaggle_kernels_list(search = "titanic")
#' kaggle_kernels_list(language = "python")
#'
#'
#' @export
kaggle_kernels_list <- function(mine = FALSE, page = NULL, size = 20, search = NULL, parent = FALSE,
competition = NULL, dataset = NULL, user = NULL,
language = c("all", "python", "r", "sqlite", "julia"),
kernel_type = c("all", "script", "notebook"),
output_type = c("all", "visualizations", "data"),
sort_by = c('hotness', 'commentCount', 'dateCreated', 'dateRun', 'relevance', 'scoreAscending', 'scoreDescending', 'viewCount', 'voteCount')) {
stopifnot(size <= 100 && size > 0)
cmd <- paste("kernels list",
"--language", match.arg(language),
"--kernel-type", match.arg(kernel_type),
"--output-type", match.arg(output_type),
"--sort-by", match.arg(sort_by),
"--page-size", size,
"--csv")
cmd <- add_mine(cmd, mine)
cmd <- add_page(cmd, page)
cmd <- add_search(cmd, search)
cmd <- add_parent(cmd, parent)
cmd <- add_competition(cmd, competition)
cmd <- add_dataset(cmd, dataset)
cmd <- add_user(cmd, user)
return(kaggle_build_script(cmd))
}
#' Initialize Metadata File for a Kernel
#'
#' @param folder Folder for upload, containing data files and a special kernel-metadata.json file (https://github.com/Kaggle/kaggle-api/wiki/Kernel-Metadata).
#'
#'
#' @examples
#' \dontrun{
#' kaggle_kernels_init(folder = "./path/to/kernel")
#' }
#'
#'
#' @export
kaggle_kernels_init <- function(folder) {
cmd <- paste("kernels init",
"--path", folder)
return(kaggle_build_script(cmd))
}
#' Push a Kernel
#'
#' @param folder Folder for upload, containing data files and a special kernel-metadata.json file (https://github.com/Kaggle/kaggle-api/wiki/Kernel-Metadata).
#'
#'
#' @examples
#' \dontrun{
#' kaggle_kernels_push(folder = "./path/to/kernel")
#' }
#'
#'
#' @export
kaggle_kernels_push <- function(folder) {
cmd <- paste("kernels push",
"--path", folder)
return(kaggle_build_script(cmd))
}
#' Pull a Kernel
#'
#' @param kernel Kernel URL suffix in format <owner>/<kernel-name> (use `kaggle_kernels_list()` to show options)
#' @param path Folder where file(s) will be downloaded, defaults to current working directory
#' @param metadata Generate metadata when pulling kernel
#'
#'
#' @examples
#' \dontrun{
#' kaggle_kernels_pull(kernel = "rtatman/list-of-5-day-challenges", path = "/path/to/dest")
#' }
#'
#'
#' @export
kaggle_kernels_pull <- function(kernel, path = NULL, metadata = FALSE) {
cmd <- paste("kernels pull", kernel)
cmd <- add_path(cmd, path)
cmd <- add_metadata(cmd, metadata)
return(kaggle_build_script(cmd))
}
#' Retrieve a Kernel's output
#'
#' @param kernel Kernel URL suffix in format <owner>/<kernel-name> (use `kaggle_kernels_list()` to show options)
#' @param path Folder where file(s) will be downloaded, defaults to current working directory
#' @param force Skip check whether local version of file is up to date, force file download
#' @param quiet Suppress printing information about the upload/download progress
#'
#'
#' @examples
#' \dontrun{
#' kaggle_kernels_output(kernel = "mrisdal/exploring-survival-on-the-titanic", path = "/path/to/dest")
#' }
#'
#'
#' @export
kaggle_kernels_output <- function(kernel, path = NULL, force = FALSE, quiet = FALSE) {
cmd <- paste("kernels output", kernel)
cmd <- add_path(cmd, path)
cmd <- add_force(cmd, force)
cmd <- add_quiet(cmd, quiet)
return(kaggle_build_script(cmd))
}
#' Get the Status of the Latest Kernel Run
#'
#' @param kernel Kernel URL suffix in format <owner>/<kernel-name> (use `kaggle_kernels_list()` to show options)
#'
#'
#' @examples
#' kaggle_kernels_status(kernel = "mrisdal/exploring-survival-on-the-titanic")
#'
#'
#' @export
kaggle_kernels_status <- function(kernel) {
cmd <- paste("kernels output", kernel)
return(kaggle_build_script(cmd))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.