Nothing
round_dbl <- function(data, digits = 4L) {
data[detect_dbl(data)] <- lapply(data[detect_dbl(data)], round, digits = digits)
data
}
detect_dbl <- function(data) {
unlist(lapply(data, is.double))
}
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.