#' Value-at-Risk d'une loi Beta
#' @param a alpha
#' @param b beta
#' @param k kappa (doit être entre 0 et 1)
#' @export
VaR_beta <- function(k, a, b)
{
qbeta(k, a, b)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.