What would be the most python-esque way for calculating a correlation matrix of extremely large vectors?
For example, I have 23 vectors, each with length 40,000 (!). pandas.Dataframe.corr() method runs out of RAM for this.
What would be the most python-esque way for calculating a correlation matrix of extremely large vectors?
For example, I have 23 vectors, each with length 40,000 (!). pandas.Dataframe.corr() method runs out of RAM for this.