Is there a way to sort by group using only one sorter?
See original GitHub issueHello,
According to the documentation, it is possible to split by group and then use run_sorters
to get a sorter object per group. However, if possible, I would like to a single object with data from all my groups (shanks)
In version 0.11.0 one could use grouping_property='group'
to sort by group and to keep the data in a single sorter object. Is there a similar method with 0.93.0?
Cheers
Issue Analytics
- State:
- Created a year ago
- Comments:15 (7 by maintainers)
Top Results From Across the Web
Sort data in a range or table - Microsoft Support
Select a cell in the column you want to sort. On the Data tab, in the Sort & Filter group, click Sort. In...
Read more >Swing - sort a JTable's rows but keep them grouped by one ...
Swing - sort a JTable's rows but keep them grouped by one column and only show the value once on top of each...
Read more >Changing order in GroupBy and then sorting? - KNIME Forum
The only way I can see to do this in KNIME is to either use the Column Re-sorter node before I use the...
Read more >Sorting, Grouping, and Filtering for List Binding - SAPUI5 SDK
The list uses a sorter which sorts the list of companies in ascending order by the county column. It also groups its rows...
Read more >How to Sort in Excel Rows or Columns Avoid Sort Problems
On the Excel Ribbon, click the Data tab. Click Sort A to Z (smallest to largest) or Sort Z to A (largest to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ah I see! There seems to be a mismatch in the dtype:
groups
for recordings areint
anf for sorting arestr
…I’ll look into it!I managed to do it and it solved the issue! Thanks!