summary.ctmedmed: Summary Method for an Object of Class 'ctmedmed'

View source: R/cTMed-methods-ctmedmed.R

summary.ctmedmedR Documentation

Summary Method for an Object of Class ctmedmed

Description

Summary Method for an Object of Class ctmedmed

Usage

## S3 method for class 'ctmedmed'
summary(object, digits = 4, ...)

Arguments

object

an object of class ctmedmed.

digits

Integer indicating the number of decimal places to display.

...

further arguments.

Value

Returns a matrix of effects.

Author(s)

Ivan Jacob Agaloos Pesigan

Examples

phi <- matrix(
  data = c(
    -0.357, 0.771, -0.450,
    0.0, -0.511, 0.729,
    0, 0, -0.693
  ),
  nrow = 3
)
colnames(phi) <- rownames(phi) <- c("x", "m", "y")

# Specific time interval ----------------------------------------------------
med <- Med(
  phi = phi,
  delta_t = 1,
  from = "x",
  to = "y",
  med = "m"
)
summary(med)

# Range of time intervals ---------------------------------------------------
med <- Med(
  phi = phi,
  delta_t = 1:5,
  from = "x",
  to = "y",
  med = "m"
)
summary(med)


cTMed documentation built on Oct. 21, 2024, 5:08 p.m.