#' proper
#'
#' \code{proper} Converts text string to proper case
#'
#' @author John James, \email{jjames@@DataScienceSalon.org}
#' @family Text Functions
#' @export
proper <- function(x) {
s <- strsplit(x, " ")[[1]]
paste(toupper(substring(s, 1,1)), substring(s, 2),
sep="", collapse=" ")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.