Is there any built-in pandas' method to find the cumulative correlation between two pandas series?
What it should do is effectively fixing the left side of the window in pandas.rolling_corr(data, window) so that the width of the window increases and eventually the window includes all data points.
Here's one way,
map
on index and applycorr
for the increasing size of series.Details
Validation