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.
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.