Nothing
## File Name: ma.scale2.R
## File Version: 0.10
# Call to Rcpp function
ma.scale2 <- function (x, missings=FALSE )
{
x_ <- as.matrix(x)
if ( ! missings ){
res <- scale2_C( x_ )
} else {
res <- scale2_NA_C( x_ )
}
colnames(res) <- colnames(x)
return(res)
}
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.