R/convert.d.to.U3.R

Defines functions convert.d.to.U3

Documented in convert.d.to.U3

#' Convert Cohen's d to U3
#'
#' This function simply returns the result of [pnorm()] for
#' Cohen's d.
#'
#' @param d Cohen's d.
#'
#' @return An unnames numeric vector with the U3 values.
#' @export
#'
#' @examples convert.d.to.U3(.5);
convert.d.to.U3 <- function(d) {
  return(stats::pnorm(d));
}

Try the ufs package in your browser

Any scripts or data that you put into this service are public.

ufs documentation built on July 9, 2023, 6:07 p.m.