| summary,geex-method | R Documentation | 
Object Summaries
## S4 method for signature 'geex' summary(object, keep_data = TRUE, keep_args = TRUE)
| object | a  | 
| keep_data | keep the original data or not | 
| keep_args | keep the  | 
library(geepack)
data('ohio')
glmfit  <- glm(resp ~ age, data = ohio,
              family = binomial(link = "logit"))
example_ee <- function(data, model){
  f <- grab_psiFUN(model, data)
  function(theta){
    f(theta)
  }
}
z  <- m_estimate(
estFUN = example_ee,
data = ohio,
compute_roots = FALSE,
units = 'id',
roots = coef(glmfit),
outer_args = list(model = glmfit))
object.size(z)
object.size(summary(z))
object.size(summary(z, keep_data = FALSE))
object.size(summary(z, keep_data = FALSE, keep_args = FALSE))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.