Nothing
#' @title Estimation of the parameters of a normal
#' @description Returns a list with the parameters and
#' input data transformed by its distribution function.
#' @param X A data frame with the predictor variables.
normal.estimation <- function(X){
mu <- apply(X, 2, mean)
sd <- apply(X, 2, sd)
U <- t(apply(X, 1, function(x) pnorm(x,mu,sd)))
value <- list(mu = mu,sd = sd,U = U)
return(value)
}
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.