[SOLVED] Output in Netbeans

JiyJiy MemberPosts:6Contributor I
edited November 2018 inHelp
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]
是的r
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 ?

是的r || 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 ProfessorPosts:1,984RM 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 MemberPosts:6Contributor I
    Sorry for my stupid question ::)
    许多感谢您的帮助!:D
Sign InorRegisterto comment.