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)
} 

Try the rvalues package in your browser

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

rvalues documentation built on March 11, 2021, 9:05 a.m.