#' Helper function to capitalize a string
#'@param x input string
#'@return capitalized output string
#'@keywords Internal
#'@noRd
#'@export
#'
CapStr <- function(y) {
c <- strsplit(y, " ")[[1]]
paste(toupper(substring(c, 1,1)), substring(c, 2),
sep="", collapse=" ")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.