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
Generate Attributes
Best Answer
-
BalazsBarany Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 UnicornHi!
How are your data structured? Do you have different attributes with true/false and you're interested in the number of true values in that row?
This could be solved with converting true/false to 1/0 (Map operator), parsing these numbers (Parse Numbers) and summing up the values (Generate Aggregation).
Regards,
Balázs0
Answers
Map takes values and changes them into other values. You could change male to m, female to f, or true to 1 and false to 0, whatever you need.
Parse Numbers does exactly what it says: It converts nominal (text) attributes that contain numbers into numeric attributes.
Generate Aggregation is very powerful. It can calculate sum, average, minimum and so on for every row of the input. Contrast this with the Aggregate operator which groups rows together to calculate the result. Generate Aggregation works on the columns of each row and just adds a new attribute.
Regards,
Balázs