Nothing
## string-format.R: String formatting helpers
##
## This file is part of the cvLM package.
.p_a <- function(...) paste0(..., collapse = " & ")
.p_n <- function(...) paste0(..., collapse = "")
.fmt <- function(x, n.digits, big.mark) {
format(
round(x, n.digits),
nsmall = n.digits,
big.mark = big.mark,
trim = TRUE
)
}
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.