R/EV_EVm_lnre.R

## generic stubs for EV and EVm (when not provided by the respective LNRE model
EV.lnre <- function (obj, N=NA, ...)
{
  if (! inherits(obj, "lnre")) stop("argument must be object of class 'lnre'")
  stop("EV() method not implemented for ",obj$name," LNRE model (lnre.",obj$type,")")
}

EVm.lnre <- function (obj, m, N=NA, ...)
{
  if (! inherits(obj, "lnre")) stop("argument must be object of class 'lnre'")
  stop("EVm() method not implemented for ",obj$name," LNRE model (lnre.",obj$type,")")
}

Try the zipfR package in your browser

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

zipfR documentation built on Jan. 8, 2021, 2:37 a.m.