R/list_models.R

Defines functions list_models

Documented in list_models

#' List all available HTTK models
#' 
#' @return Prints a list of available HTTK models to the screen.
#' 
#' @author John Wambaugh

#' 
#' @export list_models
list_models <- function()
{
  models.text <- strwrap(paste("Available models for httk are: \"",
            paste(names(model.list), collapse = "\", \""),
            "\".\n",sep=""))
  writeLines(models.text)
}

Try the httk package in your browser

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

httk documentation built on June 8, 2025, 12:19 p.m.