[SOLVED] Output in Netbeans
Jiy
New Altair Community Member
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!
[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!
0
Answers
-
Hi,
you mean like so ???
Regards,
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));
}
Marco0 -
Sorry for my stupid question ::)
and many thanks for your help!0