Hi, I've similar problem only difference is that I want nested sorting for 3 attribute eg. ID wise (assending), date wise (assending) and amount wise (assending). So when I use sort 3 times in the following order amount wise, date wise and ID wise - resluts is not nested a nested sorting insted it only give nested sorting of two level i.e., ID wise and Date wise - Please guide - Thanks in advance
Hi!
Sorting by multiple attributes is not implemented in the Sort operator in RapidMiner.
A workaround is to create a new attribute (e. g. "sortkey") from the attributes you're trying to sort on and then use that in the sort operation.
I frequently use Generate Attributes for this, converting numerical and date attributes using a fixed pattern (e. g. 000000 or yyyy-MM-dd HH:mm:ss) and concatenating them with an additional separator. Your sort attribute could then have values like this: 000001/2016-11-07 14:30:51/113.30.
Regards,
Balázs