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