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] Output in Netbeans

JiyJiy Member Posts: 6 Contributor II
edited November 2018 in Help
hello! im beginner here. so im not so familiar with the syntax. im trying to integrate rapidminer with netbeans. and here is the ouput

[tt]
year
1932.0
1933.0
1934.0
1935.0


prediction(label)
-0.9235532885861942
-0.9271335452092432
-0.931377881689793
-0.9365172823261052

[/tt]

how to make the output looks like this ?

year    ||    prediction
==========================
1932   ||   -0.9235532885861942
1933   ||    -0.9271335452092432
1934   ||   -0.931377881689793
1935  ||    -0.9365172823261052


sorry for my bad english. anyway thanks in advance! ;)
Tagged:

Answers

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

    you mean like so ???

    Attribute label = exampleSet.getAttributes.getLabel();
    Attribute year = exampleSet.getAttributes.get("year");
    System.out.println(attribute.getName() + "    ||    " + year.getName());
    for (Example ex : exampleSet) {
        System.out.println(com.rapidminer.tools.Tools.formatIntegerIfPossible(ex.getValue(year), -1) + "    ||    " + ex.getValue(label));
    }

    Regards,
    Marco
  • JiyJiy Member Posts: 6 Contributor II
    Sorry for my stupid question ::)
    and many thanks for your help! :D
Sign In or Register to comment.