Learn R Programming

zoocat (version 0.2.0.1)

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

Description

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

Usage

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

Arguments

...

zoocat objects.

deparse.levels

Not used.

Examples

Run this code
# NOT RUN {
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)

# }

Run the code above in your browser using DataLab