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
"Filter data (file.xls) as a function of five parameters (attributes)"
HI,
Is there any possibilty in RapidMiner5 to filter data (file.xls) as a function of five parameters (attributes)? I am looking for the number of machines being equipped with both item 1 and 2 having respectively the length X and Y.
attribute 1: item 1
attribute 2: feature of item 1 (e.g. length X)
attribute 3: item 2
attribute 4: feature of item 2 (e.g. length Y)
attribute 5: serial number of the machine
Result: number of machines responding to the same criteria ( item 1 length X + item 2 length Y).
I got a whole bunch of items and the user should be able to choose whatever two items (having different specifications) and get as result the number of machines equipped with these two items.
Do I use Generate Attribute or Loop or whatever?
Is RapidMiner the right tool for this query?
I am newbie.
Would be glad about any return.
Thanks
Is there any possibilty in RapidMiner5 to filter data (file.xls) as a function of five parameters (attributes)? I am looking for the number of machines being equipped with both item 1 and 2 having respectively the length X and Y.
attribute 1: item 1
attribute 2: feature of item 1 (e.g. length X)
attribute 3: item 2
attribute 4: feature of item 2 (e.g. length Y)
attribute 5: serial number of the machine
Result: number of machines responding to the same criteria ( item 1 length X + item 2 length Y).
I got a whole bunch of items and the user should be able to choose whatever two items (having different specifications) and get as result the number of machines equipped with these two items.
Do I use Generate Attribute or Loop or whatever?
Is RapidMiner the right tool for this query?
I am newbie.
Would be glad about any return.
Thanks
0
Answers
Has no one gotten the slightest idea?
Feel free to answer in German!
The filter examples operator might do what you want although it seems to be limited to logical ANDs with two conditions. regards
Andrew
i don't know exactly what you want to do, but filtering data is possible of course.
At first you have to load your data into RapidMiner with the 'Read Excel' operator for example. Now you can filter your data with the Filter Example operator. If you choose 'attribute_value_filter' as the condition class you can type "att1 > 20", so that every example will be filtered out if its attribute 'att1' is bigger than 20. Use the operator 'Generate Attribute' to create a new attribute which is the sum of two attributes.
After that you can aggregate the filtered examples with the Aggregate operator which works similar to SQL-aggregation. So to get the number of examples you have to use the aggregation function "count".
I hope this could help you. Otherwise try to post a minimal example dataset and the desired result.
Regards
Marcin