Stat st2 = new Stat(scaledTransformedData);
this.transformedMinimum = st2.minimum();
this.transformedMaximum = st2.maximum();
this.transformedMedian = st2.median();
this.transformedRange = this.transformedMaximum - this.transformedMinimum;
this.transformedMean = st2.mean();
this.transformedStandardDeviation = st2.standardDeviation();
this.transformedVariance = st2.variance();
this.transformedMomentSkewness = st2.momentSkewness();
this.transformedMedianSkewness = st2.medianSkewness();
this.transformedQuartileSkewness = st2.quartileSkewness();