convert collection to a single table (ExampleSet)
I'm using loop values and it generates different tables (ExampleSet) by value with the same attributes.
I need to have a table with all.
my out is
collection
table value 23:
USER_ID ITEM_ID
1 23
table value 54:
USER_ID ITEM_ID
1 54
...
I need this
ExampleSet
USER_ID ITEM_ID
1 23
1 54
... ...
Thanks
I need to have a table with all.
my out is
collection
table value 23:
USER_ID ITEM_ID
1 23
table value 54:
USER_ID ITEM_ID
1 54
...
I need this
ExampleSet
USER_ID ITEM_ID
1 23
1 54
... ...
Thanks
Tagged:
0
Answers
you've posted in the Development forum, so I'm assuming you want to know how to do it in Java. You will need to create a new ExampleSet with the same attributes as your existing sets have. You can then loop over each example (row) of each example set and add a row for each to the new one. See below for a quick example: In case you were looking for a solution inside RapidMiner Studio, just use the "Append" operator.
Regards,
Marco
Whats the solution?? I want single example set.
if you use Append correctly, it will give you an example set. This is working every time in hundreds of processes.
Please post a screenshot and the process XML if it doesn't work for you.
Regards,
Balázs