print.ACDCset: Print method for ACDCset object

Description Usage Arguments Examples

View source: R/plot.ACDCset.R

Description

Print method for ACDCset object

Usage

1
2
## S3 method for class 'ACDCset'
print(x, ...)

Arguments

x

an object of class ACDCset

...

other arguments

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
data(primates_ebd)
lambda <- approxfun(primates_ebd$time, primates_ebd$lambda)
mu <- approxfun(primates_ebd$time, primates_ebd$mu)
times <- seq(0, max(primates_ebd$time), length.out = 500)

model <- create.model(lambda, mu, times = times)

mus <- list(function(t) 0.2 + exp(0.01*t), 
           function(t) 0.2 + sin(0.35*t) + 0.1*t,
           function(t) 1.0, 
           function(t) 0.5 + 0.2*t)
models <- congruent.models(model, mus = mus)

print(models)

ACDC documentation built on Jan. 13, 2022, 1:08 a.m.