R/coef.drc.R

"coef.drc" <-
function(object, ...)
{
    if (!is.null(object$"coefficients"))
    {
        return(object$"coefficients")
    } else {
        retVec <- object$fit$par
        names(retVec) <- object$parNames[[1]]
        return(retVec)
    }
}

Try the drc package in your browser

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

drc documentation built on May 1, 2019, 8:43 p.m.