Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.
Inverting a join
Is there a way to invert a join in rapidminer? I am using an inner join. So instead of getting the output to be all the examples that match between the two data sets, you get a list of all the examples that do not match.
Is this possible?
Tagged:
0
Answers
Hi,
isnt that set minus? Otherwise you can maybe simply use an outer join and filter for missings?
~Martin
Dortmund, Germany
Hi,
I blogged about generic/advanced joins just two days ago:
http://datascientist.at/2016/06/generic-joins-in-rapidminer/#english
This could be interesting for your application. Your join condition would be "e1 != e2".
Set Minus is not exactly a join as it is one-sided.
You could also use an Outer join, keep both join attributes and then filter out those that have non-missing join fields.
Be careful, this will get you a huge number of resulting rows.