R/pt_.R

Defines functions pt_

Documented in pt_

#' Distribution function non-standard student-t
#'
#' Computes the cdf.
#'
#' For internal use
#'
#' @keywords internal
#' @examples
#'
#' ## The function is currently defined as
#' function(x, df, mean, sd) {
#'   pt((x - mean) / sd, df, ncp = 0)
#' }
pt_ <-
  function(x, df, mean, sd) {
    pt((x - mean) / sd, df, ncp = 0)
  }

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.