bind-methods {planor} | R Documentation |
Methods to bind two objects of the same class.
## S4 method for signature 'designfactors,designfactors' bind(x, y)
x |
an object of the first class in the signature. |
y |
an object of the second class in the signature. |
An object of the same class as x
and y
,
containing their joint content.
Factors with same name are distinguished and advertised with a warning.
Class where this method applies:
designfactors
F1 <- planor.factors(factors=c("block",LETTERS[1:4]), nlevels=c(6,6,4,2,6)) F2 <- planor.factors(factors=c("block",LETTERS[11:12]), nlevels=c(6,6,4)) ### Method bind on designfactors objects F3 <- bind(F1,F2) names(F3)