Nothing
plot.loadings <- function(x, n = 5,
k = ncol(x), mfrow = c(k, 1), ...) {
if (k > 1) {
opar <- graphics::par(mfrow = mfrow)
on.exit(graphics::par(opar))
}
f <- function(i)
graphics::barplot(sort(x[, i],
decreasing = TRUE)[1:n],
ylim = 0:1, main = colnames(x)[i],
...)
r <- lapply(1:k, f)
}
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.