StratoDem / pandas-js

Pandas in JavaScript for data analysis and visualization
https://stratodem.github.io/pandas.js-docs
MIT License
458 stars 36 forks source link

Equivalent Pandas Dataframe.sort_values function #63

Open sierret opened 1 year ago

sierret commented 1 year ago

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.