pandas-js
pandas-js copied to clipboard
Equivalent Pandas Dataframe.sort_values function
Is there was easy way to emulate the df.sort_values function?
Other wise it seems I'll have to obtain the sort by series, sort the series, store index values and create a new dataframe in the order of the stored index values. And this of course becomes somewhat recursive and more complicated if there are more than one sort by columns.