# .hlpr_get_stats ----
.hlpr_get_stats <- function(input) {
out <- c(
class(input),
length(input),
sd(input),
min(input),
quantile(input, 0.25),
mean(input),
median(input),
quantile(input, 0.75),
max(input)
)
return(out)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.