Loop through filtered values
I am having trouble putting together a loop.
I have a dataset with multiple products. Let's say I want to run the model three times for 3 different products. I created 3 macros with product names.
Then in my filter Product Name = Macro 1, run model on that filtered dataset. Then how do I create a loop so it goes Product Name = Macro 2 etc. run the model again for this dataset and so on for all specified macros ?
Really appreciate any help.
I have a dataset with multiple products. Let's say I want to run the model three times for 3 different products. I created 3 macros with product names.
Then in my filter Product Name = Macro 1, run model on that filtered dataset. Then how do I create a loop so it goes Product Name = Macro 2 etc. run the model again for this dataset and so on for all specified macros ?
Really appreciate any help.
Tagged:
0
Best Answer
-
varunm1 Moderator, MemberPosts:1,207UnicornHello@asav_yu
Looks like a macro inside another macro is not possible. Did you try "loop values" operator for your requirement? This will filter data based on attribute value automatically. Please see below XML with titanic dataset.
<宏/ >
<运营商激活= " true " class = " filter_examples”compatibility="9.3.001" expanded="true" height="103" name="Filter Examples" width="90" x="246" y="34">
Please inform if you need more information.Regards,
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
1
Answers
Once you set the number of iterations to 3 in loop operator, you can write Product Name = Macro%{execution_count}. If possible rename macros to Macro_1, Macro_2, Macro_3 and try Macro_%{execution_count}. I suggested this renaming cause, I am not sure if rapidminer can deal with spaces.
The said statement will give value Macro_1 for first execution, Macro_2 for the second execution of the loop and soon. I am just guessing your process and proposing this but if you could provide your XML the solution can be more specific.
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
Thanks again for your help!