WH.bind-methods: Method WH.bind

WH.bindR 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 MatH object

object2

a MatH object

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)

HistDAWass documentation built on Sept. 26, 2022, 5:06 p.m.