Learn R Programming

corrDNA (version 1.0.1)

assoc_ZiY.ZjY: Association between variable \(Z_{iY}\) and \(Z_{jY}\).

Description

Finding association between variable \(Z_{Y}\) at \(i^{th}\) position and \(Z_{Y}\) at \(j^{th}\) position. Here, the standard normal variable \(Z_{Y}\) reprsents the occurences of nucleotides C and T at any position based on some threshold values.

Usage

assoc_ZiY.ZjY(x, rZiZj, rZiZjY)

Arguments

x

A dataframe of position wise aligned sequence dataset having A, T, G and C only.

rZiZj

An object generated by using the function assoc_Zi.Zj.

rZiZjY

An object generated by using the function assoc_Zi.ZjY.

Value

A numeric matrix of order L by L for the dataset of L nucleotides long sequences.

Details

The user has to supply the input dataset as well as the outputs generated from the functions assoc_Zi.Zj and assoc_Zi.ZjY.

Examples

Run this code
# NOT RUN {
data(don_dat)
kk <- don_dat[1:300,]
zizj <- assoc_Zi.Zj(x=kk)
zizjy <- assoc_Zi.ZjY(x=kk, rZiZj=zizj)
ziyzjy <- assoc_ZiY.ZjY(x=kk, rZiZj=zizj, rZiZjY=zizjy)
ziyzjy
# }

Run the code above in your browser using DataLab