Nothing
################################################################################
# pad.spaces returns a string containing the number of spaces given as an
# argument.
# Author: Alexis Dinno
# Date: May 20, 2026
# Takes: A single positive integer
pad.spaces <- function(n) {
n <- max(0, n)
return(paste0(rep(" ",n),collapse=""))
}
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.