Nothing
#' @title Estimation of the density of some distribution
#' @param X Matrix with predictor variables.
#' @param distribution Distribution to be used: normal or kernels,
#' by default normal.
density.estimation <- function(X, distribution = 'normal'){
switch(distribution,
'normal' = normal.estimation(X),
'kernel' = kernel.estimation(X)
)
}
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.