WH.bind {HistDAWass} | R Documentation |
Method WH.bind
Description
It attaches two MatH
objects with the same columns by row, or the same rows by colum.
Usage
WH.bind(object1, object2, byrow)
## S4 method for signature 'MatH,MatH'
WH.bind(object1, object2, byrow = TRUE)
Arguments
object1 |
a |
object2 |
a |
byrow |
a logical value (default=TRUE) attaches the objects by row |
Value
a MatH
object,
See Also
WH.bind.row
for binding by row, WH.bind.col
for binding by column
Examples
# binding by row
M1 <- BLOOD[1:10, 1]
M2 <- BLOOD[1:10, 3]
MAT <- WH.bind(M1, M2, byrow = TRUE)
# binding by col
M1 <- BLOOD[1:10, 1]
M2 <- BLOOD[1:10, 3]
MAT <- WH.bind(M1, M2, byrow = FALSE)
[Package HistDAWass version 1.0.8 Index]