jeffheaton / encog-java-core

http://www.heatonresearch.com/encog
Other
743 stars 268 forks source link

Workbench: Interation-axis shows decimals #60

Closed PetrToman closed 12 years ago

PetrToman commented 12 years ago

There is no sense to show decimals for the number of iterations in the training progress chart. This can be fixed (http://www.jfree.org/jfreechart/faq.html) by adding:

plot.getDomainAxis().setStandardTickUnits(NumberAxis.createIntegerTickUnits());

to line 182 in ChartPane.java.

seemasingh commented 12 years ago

Thanks, good point! Added the line of code.