Nothing
#' Tick Control
#' @noRd
tickControl <- function(id, max.tick = 50) {
if (length(id) <= max.tick) {
return(id)
} else {
incre <- ceiling(length(id) / max.tick)
return(id[seq_along(id) %% incre == 1])
}
}
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.