pg.setYaxisLegend("Ordered Data Values");
pg.setGraphTitle("Weibull probability plot: gradient = " + Fmath.truncate(this.weibullLine[1], 4) + ", intercept = " + Fmath.truncate(this.weibullLine[0], 4) + ", R = " + Fmath.truncate(this.weibullCorrCoeff, 4));
pg.setGraphTitle2(" mu = " + Fmath.truncate(this.weibullParam[0], 4) + ", sigma = " + Fmath.truncate(this.weibullParam[1], 4) + ", gamma = " + Fmath.truncate(this.weibullParam[2], 4));
// Plot
pg.plot();
this.weibullDone = true;
this.probPlotDone = true;
}