Learn R Programming

HistDAWass (version 1.0.8)

WH.bind: 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 MatH,MatH WH.bind(object1, object2, byrow = TRUE)

Value

a MatH object,

Arguments

object1

a MatH object

object2

a MatH object

byrow

a logical value (default=TRUE) attaches the objects by row

See Also

WH.bind.row for binding by row, WH.bind.col for binding by column

Examples

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

Run the code above in your browser using DataLab