R/qt_.R

Defines functions qt_

Documented in qt_

#' Quantile function non-standard Student-t
#'
#' Computes the quantiles.
#'
#' For internal use
#'
#' @keywords internal
#' @examples
#'
#' ## The function is currently defined as
#' function(p, df, mean, sd) {
#'   sd * qt(p, df, ncp = 0) + mean
#' }
qt_ <-
  function(p, df, mean, sd) {
    sd * qt(p, df, ncp = 0) + mean
  }

Try the BNPdensity package in your browser

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

BNPdensity documentation built on April 1, 2023, 12:10 a.m.