Nothing
#' @title Generates an rtrunc-dispatchable class
#' @description Matches a list of arguments to an rtrunc method
#' @param n sample size
#' @param family distribution family
#' @param parms list of parameters passed to rtrunc (through the `...` element)
#' @return A character string.
#' @author Waldir Leoncio
genrtruncClass <- function(n, family, parms) {
# Dropping a and b (parameters not used for validating) -- #
parms <- parms[!(parms %in% c("a", "b"))]
validation_family_parms <- validateFamilyParms(family, parms)
family <- validation_family_parms$family_name
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.