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.
[Solved] Set an attribute as Missing
aryan_hosseinza
Member Posts: 74 Contributor II
Hi everybody,
I have an attribute which I want to set it as Missing , is there any operator in rapidminer to do this ?
Thanks
I have an attribute which I want to set it as Missing , is there any operator in rapidminer to do this ?
Thanks
0
Answers
if you have certain values that should be defined as missing, you can use the Declare Missing Values operator. If you have more complex rules, you can use Generate Attributes, and generate a missing value if the rule matches. The expression to create a missing value with that operator is 0/0. So you complete expression could be:
if(a1 > 25, 0/0, a1)
That would define all values >25 as missing, and keep the original value otherwise.
Best regards,
Marius