Tran: Preprocessing - Tran

Description Usage Arguments Details Value Author(s) References Examples

View source: R/RcppExports.R

Description

This function computes the transition matrix corresponding to a specific matrix of latent states.

Usage

1
Tran(xi)

Arguments

xi

Matrix of estimated latent states

Details

The matrix of latent states must consider only 4 states:

  1. Loss

  2. Neutral

  3. Gain

  4. Amplification

Value

A 4 by 4 matrix with transition probabilities derived from the input matrix of latent states.

Author(s)

Alberto Cassese

References

Guha S, Li Y, Neuberg D. Bayesian hidden Markov modelling of array cgh data. JASA. 2008;103(482):485-497.

Examples

1
2
3
4
5
data(NCI_60)

X <- NCI_60$aCGH
xi <- InitXi(X)
tran <- Tran(xi)

iBATCGH documentation built on Oct. 23, 2020, 6:34 p.m.