Performs repartitioning of sequence of dataframes by freq.
freq can be either a pandas offset string, or None. If None, extend_sequence will do minimal repartitioning to ensure partitions don't split duplicate indices (i.e. [[1, 2, 3], [3, 4, 5]] -> [[1, 2, 3, 3], [4, 5]]).
Performs repartitioning of sequence of dataframes by
freq
.freq
can be either a pandas offset string, orNone
. IfNone
, extend_sequence will do minimal repartitioning to ensure partitions don't split duplicate indices (i.e.[[1, 2, 3], [3, 4, 5]] -> [[1, 2, 3, 3], [4, 5]]
).Addresses #3, and part of #36.