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
how to use loop in Rapidminer
sgnarkhede2016
Member Posts: 152 Contributor II
Hello,
I have below Data,
I want to check first value with all below values and vice versa is greter or not and put True or False flag in check column
1
Sr A Check
1 12
2 5 True
3 8 True
2
Sr A Check
1 12 False
2 5
3 8 False
3
Sr A Check
1 12 false
2 5 true
3 8
How can i do this
I have below Data,
I want to check first value with all below values and vice versa is greter or not and put True or False flag in check column
1
Sr A Check
1 12
2 5 True
3 8 True
2
Sr A Check
1 12 False
2 5
3 8 False
3
Sr A Check
1 12 false
2 5 true
3 8
How can i do this
Tagged:
0
Answers
is this one example set? Or three different ones? In which form do you have them?
If you have one table and want to change the Check column, you don't need a loop. Just Generate Attributes with something like this:
A > Sr
(this will automatically return true or false)
I hope I understand you correctly. If not, please answer the questions and specify what the Check logic should be.
Regards,
Balázs
like first time i need to check with "1" with 2,3 and then "2" check with 1,3 etc
for yr in yr_df['sic'].unique().tolist():