The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
How to get Maximum Value from a Column?
Hello,
I'm totally new to rapidminer and only completed the basic tutorials.
I have a dataset like
MatchID Value1 Value2 Value3 1 5 1 2 1 4.5 1.5 2 ...
and would like to know if there is a possibilty to get the highest value per column (for example Value1) and make further calculations with it (generate attributes).
Thank you.
0
Answers
For getting summaries of attributes (what columns are called in RapidMiner) you will want to use the Aggregate operator. There is a built-in function for maximum (as well as minimum, average, sum, and most other commonly used metrics). You can use the "group by" option to create subgroups (basically getting that value for different groups within your data) or leave it blank to get the aggregation across all your examples (what rows are called in RapidMiner).
That should easily solve your problem. And then you can take the resulting data and store it and link it back to your original data if you want to be able to use it in additional calculations--or use macros to automate that process even further!
Lindon Ventures
Data Science Consulting from Certified RapidMiner Experts
If you don't want to mess with Aggregate and join back the results, you could try the RapidMiner Window Functions project:
https://github.com/bbarany/rapidminer-windowfunctions
Regards,
Balázs