R/tdist.R

Defines functions tdist

Documented in tdist

tdist <- function(df)  {
  ### df could be a vector or a scalar   
  
  ans <- list()   
  class(ans) <- "newfam"
  ans$family <- "tdist"
  ans$df <- df
  return(ans)
} 
wiscstatman/rvalues documentation built on May 22, 2022, 2:41 a.m.