R/coef.stops.R

Defines functions 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 Dec. 12, 2023, 3:02 a.m.