🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

[Solved] Set an attribute as Missing

User: "aryan_hosseinza"
New Altair Community Member
Updated by Jocelyn
Hi everybody,

I have an attribute which I want to set it as Missing , is there any operator in rapidminer to do this ?

Thanks

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "MariusHelf"
    New Altair Community Member
    Hi,

    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