clean_names_op <- function(x){
x <- as.character(x)
x<-toupper(x)
x <- gsub(pattern = ".", replacement = "-",x = x, fixed = TRUE)
return(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.