SetDistMat-tpcaResult-method: Set DistMat

Description Usage Arguments Value Examples

Description

Set DistMat

Usage

1
2
## S4 method for signature 'tpcaResult'
SetDistMat(object, mat)

Arguments

object

an object of class tpcaResult

mat

matrix containg distance matrix to set

Value

a data frame containing the results from a tpca analysis

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
m1 <- matrix(1:12, ncol = 4)
m2 <- matrix(2:13, ncol = 4)
m3 <- matrix(c(2:10, 1:7), ncol = 4)

rownames(m1) <- 1:3
rownames(m2) <- 2:4
rownames(m3) <- 2:5

mat_list <- list(
    m1, m2, m3
)
tpcaObj <- new("tpcaResult", ObjList = mat_list)
SetDistMat(tpcaObj, matrix(c(0, 1, 0, 1), ncol = 2))

Rtpca documentation built on Nov. 8, 2020, 7:44 p.m.