tolerance {CeTF} | R Documentation |
Calculates the local tolerance for every trio of genes.
tolerance(a, b, c, tolType = "mean")
a |
Correlation value between the genes A and B. |
b |
Correlation value between the genes B and C. |
c |
Correlation value between the genes A and C. |
tolType |
Calculation type for tolerance (mean, min, max, median) (default: 'mean'). |
Returns the value of tolerance.
See vignette for more details about the pairwise correlations.
tolerance(0.5, -0.65, 0.23, tolType = 'mean') tolerance(0.5, -0.65, 0.23, tolType = 'max') tolerance(0.5, -0.65, 0.23, tolType = 'min') tolerance(0.5, -0.65, 0.23, tolType = 'median')