R/coef.stops.R

Defines functions coef.stops

Documented in coef.stops

#' S3 coef method for stops objects
#'
#'@param object object of class stops 
#'@param ... addditional arguments 
#'@export
#'@importFrom stats coef
#'@return a vector of hyperparmeters theta 
coef.stops <- function(object,...)
    {
    return(c(object$parameters))
    }

Try the stops package in your browser

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

stops documentation built on June 8, 2025, 10:38 a.m.