Nothing
.loadSgnU <- function (x)
{ ## change the signs of the columns of a loadings matrix such, that each column's absolute maximum is positive
idx.max <- apply (abs (x), 2, which.max)
sgn <- sign (x[cbind (idx.max, 1:ncol (x))])
if (length (sgn) == 1)
return (x * sgn)
return (x %*% diag (sgn))
}
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.