#formatDateTimeISO
#
#
formatDateTimeISO <-function(dataFile,fromColumn,toColumn,...) {
res <- substring(strptime(dataFile[,fromColumn],"%d.%m.%Y %H:%M"),1,19)
dataFile[toColumn] <- res
return(dataFile)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.