g.drawString("High:", 300, y);
g.drawString("Mean:", 410, y);
g.drawString("S.Dev:", 530, y);
y+=fm.getHeight();
AnalyzeNetwork analyze = this.owner.getAnalyze();
y = fm.getHeight();
g.setFont(WorkbenchFonts.getTextFont());
g.drawString(Format.formatInteger(analyze.getTotalConnections()), 200, y);
g.drawString(Format.formatInteger(analyze.getDisabledConnections()), 450, y);
y+=fm.getHeight();
g.drawString(Format.formatInteger(analyze.getWeightsAndBias().getSamples()), 120, y);
g.drawString(Format.formatDouble(analyze.getWeightsAndBias().getLow(), 6), 220, y);
g.drawString(Format.formatDouble(analyze.getWeightsAndBias().getHigh(), 6), 350, y);
g.drawString(Format.formatDouble(analyze.getWeightsAndBias().getMean(), 6), 460, y);
g.drawString(Format.formatDouble(analyze.getWeightsAndBias().getStandardDeviation(), 6), 580, y);
y+=fm.getHeight();
g.drawString(Format.formatInteger(analyze.getBias().getSamples()), 120, y);
g.drawString(Format.formatDouble(analyze.getBias().getLow(), 6), 220, y);
g.drawString(Format.formatDouble(analyze.getBias().getHigh(), 6), 350, y);
g.drawString(Format.formatDouble(analyze.getBias().getMean(), 6), 460, y);
g.drawString(Format.formatDouble(analyze.getBias().getStandardDeviation(), 6), 580, y);
y+=fm.getHeight();
g.drawString(Format.formatInteger(analyze.getWeights().getSamples()), 120, y);
g.drawString(Format.formatDouble(analyze.getWeights().getLow(), 6), 220, y);
g.drawString(Format.formatDouble(analyze.getWeights().getHigh(), 6), 350, y);
g.drawString(Format.formatDouble(analyze.getWeights().getMean(), 6), 460, y);
g.drawString(Format.formatDouble(analyze.getWeights().getStandardDeviation(), 6), 580, y);
}