thirdInitialMomentLabel.setText(String.format("%6.4f", statistical.getThirdInitialMoment()));
printRandomNumbers();
GeneratorChecking generatorChecking = new GeneratorChecking();
chiWebEngine.loadContent(String.format("<html><h2><center>χ<sup>2</sup> = %6.4f</center></h2></html>", generatorChecking.pearson(histogram, a, b, count, randomGenerator)));
lambdaWebEngine.loadContent(String.format("<html><h2><center>λ = %6.4f</center></h2></html>", generatorChecking.kolmogorov(histogram, randoms, randomGenerator)));
}
private void updateHistograms() {
partition = Integer.parseInt(partitionTextField.getText());
histogram.create(a, b, partition, randoms);