3

I'm looking into using dask for time-series research with large volumes of data. One common operation that I use is realignment of data to a different index (the reindex operation on pandas dataframe's). I noticed that the reindex function is not currently supported in the dask dataframe API, but is in the DataArray API. Are there plans to add this function?

John
  • 31
  • 3

1 Answers1

0

I believe you could use the Dataframe.set_index() method combined with .resample() for that same purpose.

teoguso
  • 71
  • 5