updateTable <- function(datosChembl){
for (i in 1:nrow(datosChembl)){
aux <- gsub("[[:blank:]]", "", datosChembl$synonyms[i])
datosChembl$synonyms_formatted[i] <- gsub("[^[:alnum:];]", "", aux)
}
return(datosChembl)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.