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.

Values of ConditionedExampleSet

memvis70memvis70 Member Posts: 8 Contributor II
edited November 2018 in Help
Hello,

I have a ConditionedExampleSet as output of the operator FIlterExample  and I need the resulting values of the predicted attribute prediction of this ConditionedExampleSet. How can I do this?

Thanks in advance.

Tagged:

Answers

  • Marco_BoeckMarco_Boeck Administrator, Moderator, Employee, Member, University Professor Posts: 1,996 RM Engineering
    Hi,

    you can do the following to retrieve the values for a column:

    Attribute att = exampleSet.getAttributes().get(NAME_OF_ATTRIBUTE);
    for (Example example : exampleSet) {
      example.getValue(att);
    }
    Regards,
    Marco
Sign In or Register to comment.