// Obtain the intercept and gradient of the Gaussian probabilty plot
ArrayMaths st4 = new ArrayMaths(this.standardizedTransformedData);
st4 = st4.sort();
double[] ordered = st4.array();
Regression reg = new Regression(this.gaussianOrderMedians, ordered);
reg.linear();
coeff = reg.getBestEstimates();
this.transformedIntercept = coeff[0];
this.transformedGradient = coeff[1];
coeff = reg.getBestEstimatesErrors();
this.transformedInterceptError = coeff[0];
this.transformedGradientError = coeff[1];
// Adust mean and standard deviation of the transformed data to match those of the entered data
this.scaledTransformedData = Stat.scale(this.standardizedTransformedData, this.originalMean, this.originalStandardDeviation);