#' LoadMotorTrendCars
#'
#' Load mtcars default dataset. For demonstration purposes only.
#'
#' @docType class
#' @format An R6 class object.
#' @description LoadMotorTrendCars class
#' @importFrom R6 R6Class
#' @export
LoadMotorTrendCars <- R6::R6Class(
"LoadMotorTrendCars",
inherit = LoadDefaultDataset,
public = list(
initialize = function(pipeline, ...) {
super$initialize(pipeline, dataset = datasets::mtcars, ...)
}
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.