Nothing
normalize <- function(data)
{
### data - a matrix or xts object
if (missing(data)) { stop("please, specify data") }
if (! is.matrix(data))
{
data <- as.matrix(data)
warning("data should be a matrix, the function tried to convert data to a matrix")
}
x <- data
for (i in 1:ncol(data))
{
x[,i] <- (data[,i]-min(data[,i]))/(max(data[,i])-min(data[,i]))
}
rownames(x) <- rownames(data)
colnames(x) <- colnames(data)
return(x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.