GenEst (version 1.4.5)

summary.gGeneric: Summarize the gGeneric list to a simple table

Description

methods for summary applied to a gGeneric list

Usage

# S3 method for gGeneric
summary(object, ..., CL = 0.9)

Arguments

object

gGeneric output list (each element is a named vector of gGeneric values for a cell in the model combinations)

...

arguments to be passed down

CL

confidence level

Value

a summary table of g values (medians and confidence bounds) for each cell combination within the gGeneric list

Examples

Run this code
# NOT RUN {
  data(mock)
  model_SE <- pkm(formula_p = p ~ HabitatType, formula_k = k ~ 1,
                data = mock$SE)
  model_CP <- cpm(formula_l = l ~ Visibility, formula_s = s ~ Visibility, 
                data = mock$CP, left = "LastPresentDecimalDays", 
                right = "FirstAbsentDecimalDays")
  avgSS <- averageSS(mock$SS)
  ghatsGeneric <- estgGeneric(nsim = 1000, avgSS, model_SE, model_CP)
  summary(ghatsGeneric)

# }

Run the code above in your browser using DataCamp Workspace