this.errorType = 1;
this.preprocessDataOne();
}
public RankAnalysis(BigDecimal[][] values, BigDecimal[] errors){
Matrix matv = new Matrix(values);
this.values = matv.getArrayCopy();
ArrayMaths ame = new ArrayMaths(errors);
this.errors = this.oneToTwo(ame.array(), this.values[0].length);
this.errorType = 1;
this.preprocessDataOne();
}