coef,geex-method {geex} | R Documentation |
Gets the parameter estimates from a geex object
Description
Gets the parameter estimates from a geex object
Usage
## S4 method for signature 'geex'
coef(object)
## S4 method for signature 'geex_summary'
coef(object)
Arguments
object |
a |
Examples
ex_eeFUN <- function(data){
function(theta){
with(data,
c(Y1 - theta[1],
(Y1 - theta[1])^2 - theta[2] ))
}}
results <- m_estimate(
estFUN = ex_eeFUN,
data = geexex,
root_control = setup_root_control(start = c(1,1)))
coef(results)
[Package geex version 1.1.1 Index]