#' Variance d'une loi binomiale
#' @param n nombre d'essais
#' @param q probabilité d'un succès indépendant
#' @export
V_binom <- function(n, q) n * q * (1 - q)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.