summary.Inference_run: Summary

Usage Arguments Value Examples

Usage

1

Arguments

object

Object of class Inference_run, as returned by gLVlinearRegression() or gLVnonlinearRegression()

...

Value

Summary of the estimated coefficients and significance values

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as

summary.Inference_run <- 
function(object, ...){
  tval <- c(run$Parms/run$SE)
  TAB <- cbind(Estimate = c(run$Parms), StdErr = c(run$SE), t.value = tval, p.value = 2*pt(-abs(tval), df = run$df))
  class(TAB) <- 'summary.Inference_run'
  return(TAB)
}

lkshrsch/gLVInterNetworks documentation built on May 21, 2019, 7:33 a.m.