tcor icon indicating copy to clipboard operation
tcor copied to clipboard

Fast thresholded correlation mattices

Results 3 tcor issues
Sort by recently updated
recently updated
newest added

If `a`, `b`, and `c` are columns in a matrix, I may only want to see those columns that are highly correlated with `a`. That is, I might not care...

It might be nice to add the ability to threshold on the absolute value of the correlation. For example, an absolute correlation threshold value of 0.99 would return all pairs...

Admittedly, tcor is meant to be used on matrices with more than 2 columns. However, when there are 2 it errors. ``` r library(tcor) a = 1:10 + rnorm(10) b...