4.11 Sort groups
We have data as follows:
Class | Name | Math |
---|---|---|
1 | Tom | 85 |
2 | John | 92 |
2 | Joan | 86 |
1 | Rocky | 85 |
2 | Ham | 92 |
1 | Kate | 83 |
1 | Rose | 75 |
2 | Nomy | 78 |
1 | Neil | 61 |
2 | Jack | 84 |
1 | Joe | 88 |
The task is to group data by class, and sort classes by the average score in descending order and records of each class by score in descending order:
SPL script:
A | |
---|---|
1 | =T(“score.xlsx”).group(Class;~.sort@z(Math):data,~.avg(Math):avg) |
2 | =A1.sort@z(avg).(data).conj() |
A1 Import data, group data by Class, sort data in each group by Math in descending order, and calculate the average score in each group.
A2 Sort A1 by average score in descending order and concatenate all classes into a sequence.
Execution result:
Class | Name | Math |
---|---|---|
2 | John | 92 |
2 | Ham | 92 |
2 | Joan | 86 |
2 | Jack | 84 |
2 | Nomy | 78 |
1 | Joe | 88 |
1 | Tom | 85 |
1 | Rocky | 85 |
1 | Kate | 83 |
1 | Rose | 75 |
1 | Neil | 61 |
SPL Official Website 👉 https://www.scudata.com
SPL Feedback and Help 👉 https://www.reddit.com/r/esProc_SPL
SPL Learning Material 👉 https://c.scudata.com
SPL Source Code and Package 👉 https://github.com/SPLWare/esProc
Discord 👉 https://discord.gg/cFTcUNs7
Youtube 👉 https://www.youtube.com/@esProc_SPL