#' Variance d'une loi Pareto
#' @param alph alpha
#' @param lam lambda
#' @export
V_pareto <- function(alph, lam)
{
(alph*lam^2) / ((alph - 1)^2 * (alph -2))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.