[SOLVED] Output in Netbeans

Jiy
Jiy New Altair Community Member
edited November 2024 in Community Q&A
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! ;)

Answers

  • Marco_Boeck
    Marco_Boeck New Altair Community Member
    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
  • Jiy
    Jiy New Altair Community Member
    Sorry for my stupid question ::)
    and many thanks for your help! :D