How to index and find common elements in the list ?
Find more posts tagged with
Sort by:
1 - 8 of
81
Hi @Harshav,
there is a Split operator that you can use to split up the contents of an attribute on the specified separator character.
Usually you would then use De-Pivot to convert the newly created columns (attribute_1, attribute_2 etc.) to rows and process them with Aggregate (to get the most frequent values etc.).
Regards,
Balázs
there is a Split operator that you can use to split up the contents of an attribute on the specified separator character.
Usually you would then use De-Pivot to convert the newly created columns (attribute_1, attribute_2 etc.) to rows and process them with Aggregate (to get the most frequent values etc.).
Regards,
Balázs
please check the Select operator:
Select - RapidMiner Documentation
Also you can work with Python using the Execute Python operator.
please find attached a example process for that.
Best