Hello,
DeepGraph seems ideal for my problem. I want to calculate Spearman correlation for a large dataframe in python (130000,130000). Using something like the code below returns a matrix with the correlations values.
corr_matrix, _ = spearmanr(X)
I followed the tutorial: https://deepgraph.readthedocs.io/en/latest/tutorials/pairwise_correlations.html but do not understand how to adapt the code for a dataframe. Could you help me with this please?