src/main/java/org/apache/datasketches/characterization/kll/KllDoublesSketchWeightedRankGaussianAccuracyProfile.java [42:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static final DefaultMemoryRequestServer memReqSvr = new DefaultMemoryRequestServer();
  private static final String[] columnLabels =
    {"Row", "Quantile", "NormRank", "-3SD","-2SD", "-1SD", "Med", "+1SD", "+2SD", "+3SD"};
  private static final String sFmt =
    "%3s\t%8s\t%8s\t%4s\t%4s\t%4s\t%4s\t%4s\t%4s\t%4s\n";
  private static final String fFmt =
    "%5d\t%14.0f\t%14.10f\t" //rPP, Value, NormRank
  + "%14.10f\t%14.10f\t%14.10f\t%14.10f\t%14.10f\t%14.10f\t%14.10f\n"; //-3sd to +3sd

  private Job job;
  private Properties props;

  //PROPERTIES to be derived from config file
  //Trial parameters
  private int numTrials; //num of Trials per plotPoint
  private int errorSkLgK; //size of the error quantiles sketches

  //Target sketch configuration & error analysis
  private int k;
  private QuantileSearchCriteria criteria;
  //private boolean useGetRanks;
  private boolean direct;
  private boolean weightedUpdate; //For determining the update method
  private SketchType sketchType;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/characterization/kll/KllFloatsSketchWeightedRankGaussianAccuracyProfile.java [42:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static final DefaultMemoryRequestServer memReqSvr = new DefaultMemoryRequestServer();
  private static final String[] columnLabels =
    {"Row", "Quantile", "NormRank", "-3SD","-2SD", "-1SD", "Med", "+1SD", "+2SD", "+3SD"};
  private static final String sFmt =
    "%3s\t%8s\t%8s\t%4s\t%4s\t%4s\t%4s\t%4s\t%4s\t%4s\n";
  private static final String fFmt =
    "%5d\t%14.0f\t%14.10f\t" //rPP, Value, NormRank
  + "%14.10f\t%14.10f\t%14.10f\t%14.10f\t%14.10f\t%14.10f\t%14.10f\n"; //-3sd to +3sd

  private Job job;
  private Properties props;

  //PROPERTIES to be derived from config file
  //Trial parameters
  private int numTrials; //num of Trials per plotPoint
  private int errorSkLgK; //size of the error quantiles sketches

  //Target sketch configuration & error analysis
  private int k;
  private QuantileSearchCriteria criteria;
  //private boolean useGetRanks;
  private boolean direct;
  private boolean weightedUpdate; //For determining the update method
  private SketchType sketchType;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



