#' @title Bin Mean
#' @description determines the mean
#' @param trials
#' @param prob
#' @return mean
#' @export
#' @examples
#' bin_mean(5,0.75)
bin_mean <- function(trials,prob){
check_trials(trials)
check_prob(prob)
aux_mean(trials,prob)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.