Nothing
#' Calculates the z_value
#' @noRd
#' @keywords internal
#'
#' @param sig_level the significance level
#' @param two_sided whether the two sided z statistics or single sided should be calculated
#'
#' @importFrom stats qnorm
z_calc <- function(sig_level = 0.05,
two_sided = TRUE) {
ifelse(two_sided,
abs(qnorm(sig_level / 2)),
abs(qnorm(sig_level)))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.