"Variance: " + myFormatter.format(model.getVariance()) + "\n" +
"Coefficient of variation: " + myFormatter.format(model.getCoeffVariation()));
}
}
else if(distribution == PARETO) {
engfitting = new ParetoFitting(obslist, 0.05d);
initComponents();
if(engfitting.isFitted()) {
if(obslist.length > 20)
resultfittingTextArea.setText("The analyzed data fits the Pareto distribution with significativity 0.05" + "\n" +
"(the significativity is the probability of rejecting the Pareto hypothesis when it is true)" + "\n" +