ZeroPadding <- R6::R6Class(
"ZeroPadding",
inherit = exceedapi::Step,
public = list(
#' transform the data by zero-padding the exceed_id
transform = function(.data, ...) {
mutate(.data, exceed_id = str_pad(exceed_id, 6, pad = 0))
}
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.