Julio Orrego
Julio Orrego

Reputation: 33

RapidMiner replace zero number with a "missing value"

I have a dataset that has lots of zeros, but I want to remove the zeros and instead replace them with a missing value or a NaN value. I've tried using RapidMiner operators:

and none of them are working the way I expected to.

Upvotes: 1

Views: 758

Answers (1)

David
David

Reputation: 792

to replace a zero (0), or any other regular value, with a missing value, you can use the Declare Missing Value operator. You can specify a given value (like 0) or even declare an expression, for example att_1 < 10 so all values of the column att_1 that are below 10 are declared as missing.

Upvotes: 1

Related Questions