At the moment df.sort_values in dask only accept sorting by 1 column.
I have a large file that have this structure
I don't know how to sort the data by first the integer column and then the date like
- 2000-01-01 ; 43000
- 2000-01-02 ; 43000
- 2000-01-01 ; 25000
- 2000-01-02 ; 25000
I think that creating a combined column and sort it will be the best option. The problem is that I don't know how to create a column that accomplish this.Maybe there is another option to do this without creating a combined column in Dask...
Thanks!