Calculates a correlation, distance, and p-value matrix using one of the specified robust methods Taba linear or Taba rank correlation.
taba.matrix(x, y = NULL, ..., method = c("taba","tabarank","tabwil","tabwilrank"),
alternative = c("less", "greater", "two.sided"),
omega)
A numeric vector of length greater than 2 must be same length as all other vectors.
A numeric vector of length greater than 2 must be same length as all other vectors.
Numeric vector(s) of length equal to x and y. May be of class matrix or data.frame, whose columns will be compared and whose column's length must be of equal length to x and y. Not one vector or column name can be "x" or "y."
A character string of "taba"
, "tabarank"
, "tabwil"
, or
"tabwilrank"
determining if one wants to calculate Taba linear, Taba rank
(monotonic), TabWil, or TabWil rank correlation, respectively. If no method is specified,
the function will output Taba Linear correlation.
Character string specifying the alternative hypothesis must be one
of "less"
for negative association, "greater"
for
positive association, or "two.sided"
for difference in association.
If the alternative is not specified, the function will default to a two sided test.
Numeric allowing the user to alter the tuning constant. If one is not specified, the function will default to 0.45 for Taba and Taba rank, and 0.1 for TabWil and TabWil rank. Range is between 0 and 1.
This function returns the robust association between two or more numeric vectors, as a matrix; the distance matrix, as type dist; and a p-value matrix corresponding to the correlation matrix.
This function uses Taba linear, Taba rank (monotonic), TabWil, or TabWil rank correlation to
calculate the association of two or more numeric vectors. Numeric vectors under ...
are combined colomn-wise with x and y. When inserting a single matrix x, the function will
calculate the correlation matix using the columns of matrix x.
Matricies or data frames with numeric cells can be inserted in ...
, whereby
each column in the matrix or data frame will be treated as a different vector
for comparison. Columns must all have different names from each other. No vector
or column should be named "x" or "y," as these refer to the first two vectors respectively,
if inserted as a vector or matrix with no name. Missing values in any of the vectors
are deleted row-wise.
The default for this function is a two sided test using Taba linear partial correlation,
with the tuning constant omega
equal to 0.45.
Tabatabai, M., Bailey, S., Bursac, Z. et al. An introduction to new robust linear and monotonic correlation coefficients. BMC Bioinformatics 22, 170 (2021). https://doi.org/10.1186/s12859-021-04098-4 https://doi.org/10.1186/s12859-021-04098-4
taba
for calculating Taba linear or Taba rank (monotonic) correlations
taba.test
for testing Taba linear or Taba rank (monotonic) correlations
taba.gpartial
for generalized partial correlations
taba.partial
for partial and semipartial correlations
# NOT RUN {
x = rnorm(100)
y = rnorm(100)
z1 = rnorm(100)
z2 = rnorm(100)
z3 = rnorm(100)
Z = cbind(z1,z3)
colnames(Z) = c("A","B")
taba.matrix(x, y, z1, z2, z3, method = "tabarank")
taba.matrix(x, y, z2, Z, alternative = "less", omega = 0.4)
taba.matrix(Z, method = "tabarank")
# }
Run the code above in your browser using DataLab