Nothing
#' Get max length of ID data.
#' @param data A dataframe.
#' @importFrom dplyr pull
#' @return An int object.
#' @export
#' @examples
#' data(mi_data_rawID)
#' mi_get_padlen(mi_data_rawID)
mi_get_padlen <- function(data) {
data %>%
pull("ID") %>%
map(nchar) %>%
unlist() %>%
max()
}
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.