pg.setYaxisLegend("Ordered Data Values");
pg.setGraphTitle("Exponential probability plot: gradient = " + Fmath.truncate(this.exponentialLine[1], 4) + ", intercept = " + Fmath.truncate(this.exponentialLine[0], 4) + ", R = " + Fmath.truncate(this.exponentialCorrCoeff, 4));
pg.setGraphTitle2(" mu = " + Fmath.truncate(this.exponentialParam[0], 4) + ", sigma = " + Fmath.truncate(this.exponentialParam[1], 4));
// Plot
pg.plot();
this.exponentialDone = true;
this.probPlotDone = true;
}