Description Usage Arguments Examples
View source: R/method-from-call.r
Given a function class, find correspoding S4 method
1 | method_from_call(call, env = parent.frame())
|
call |
unquoted function call |
env |
environment in which to look for function definition |
1 2 3 4 5 6 7 8 9 10 |
Method Definition:
function (object, ...)
{
cmat <- cbind(Estimate = object@coef, `Std. Error` = sqrt(diag(object@vcov)))
m2logL <- 2 * object@min
new("summary.mle", call = object@call, coef = cmat, m2logL = m2logL)
}
<bytecode: 0x38b1fc8>
<environment: namespace:stats4>
Signatures:
object
target "mle"
defined "mle"
Method Definition:
function (object, ...)
{
.local <- function (object)
object@fullcoef
.local(object, ...)
}
<bytecode: 0x38e3128>
<environment: namespace:stats4>
Signatures:
object
target "mle"
defined "mle"
function (x) .Primitive("length")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.