-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
Description
so this allows sub-sorting
e.g.
ddf = dd.DataFrame(....)
ddf = ddf.set_index('stock')
ddf = ddf.map_partitions(lambda x: x.sort_values('date'))
this is conceptually the same as (in pandas)
df = pd.DataFrame(....)
df = df.set_index(['stock,'date']).sort_index()
Reactions are currently unavailable