#' normalize features
featureNormalization<-function(dataset,target)
{
dataset<-normalizeFeatures(dataset, target = target, method = "range",
#cols = NULL,
range = c(0, 1), on.constant = "quiet")
return(dataset)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.