🎉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

"Filtering Multiple Attributes"

User: "hgwelec"
New Altair Community Member
Updated by Jocelyn
Hello,


Suppose we have a dataset with the following attributes

Age
Profession
Income
NumberOfChildren
...
...
...
class


How can i remove from analysis , attributes "Age" and "Profession" without using multiple operators (ie two AttributeFilter operators). If it can be done could someone give me an example?




Many Thanks


Harry

Find more posts tagged with

Sort by:
1 - 3 of 31
    User: "haddock"
    New Altair Community Member
    Bonjour!

    Try using the operator "FeatureNameFilter" and use  "Age|Profession" as the value for the parameter "skip_features_with_name"

    Actually there is probably a much more cryptic regex that will also do the job, but I'm too lazy to work it out....

    Allez!
    User: "hgwelec"
    New Altair Community Member
    OP
    Found it :


    Use a FeatureNameFilter operator and write the following on the'skip_features_with_name' field :

    (Age|Profession)
    User: "hgwelec"
    New Altair Community Member
    OP
    Thanks!!  :)