Nothing
linear.weights <- function (categ) {
q <- length(categ)
weights <- diag(q)
if (is.numeric(categ)) {
categ.vec <- sort(categ)
}
else {
categ.vec <- 1:length(categ)
}
xmin <- min(categ.vec)
xmax <- max(categ.vec)
for (k in 1:q) {
for (l in 1:q) {
weights[k, l] <- 1 - abs(categ.vec[k] - categ.vec[l])/abs(xmax - xmin)
}
}
return(weights)
}
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.