rbind.zoocat: Merge two or more 'zoocat' objects by rows

Description Usage Arguments Examples

Description

Merge two or more zoocat objects by rows. Note that all the cattr tables must be the same.

Usage

1
rbind.zoocat(..., deparse.levels = 1)

Arguments

...

zoocat objects.

deparse.levels

Not used.

Examples

1
2
3
4
5
6
x <- matrix(1 : 20, nrow = 5)
colAttr <- data.frame(month = c(2, 3, 5, 6), name = c(rep('xxx', 3), 'yyy'))
zc <- zoocat(x, order.by = 1991 : 1995, colattr = colAttr) 
zc2 <- zc
index(zc2) <- index(zc) + 6
rbind(zc, zc2)

zoocat documentation built on May 2, 2019, 10:22 a.m.