Feature request: phik correlation metrics
See original GitHub issueIt’d be great to add other correlations as distances, such as Spearman’s rho or the new correlation coefficient called phi_k. I am aware that it’s possible to use any distance metric using either metric='precomputed'
or implementing a custom function, but it’d be more convenient to pass metric='spearmanrho'
or 'phik'
directly.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Phik (𝜙k) — get familiar with the latest correlation coefficient
Phik ( 𝜙 k) is a new and practical correlation coefficient that works consistently between categorical, ordinal and interval variables, ...
Read more >How to Choose a Feature Selection Method For Machine ...
Filter-based feature selection methods use statistical measures to score the correlation or dependence between input variables that can be ...
Read more >phik package — Phi_K correlation library documentation
Description: Convert Pearson correlation value into a chi2 value of a contingency test matrix of a bivariate gaussion, and vice-versa.
Read more >A new correlation coefficient between categorical, ordinal and ...
Request PDF | A new correlation coefficient between categorical, ... 1 shows the correlation between the features according to Phik coefficient [20] ....
Read more >Finding out the top 10 corr features in a data in R
If we handle the cor() output as an adjacency matrix for a network object, igraph can help us to transform the output to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Added a PR.
@gokceneraslan I look at this again and I believe the best place for this would actually be the pynndescent project https://github.com/lmcinnes/pynndescent/blob/master/pynndescent/distances.py
It has the same number of metrics as UMAP and I assume it will be the default for UMAP.