Class RealIDInfo

All Implemented Interfaces:
Serializable, Cloneable, VariableIDInfo, VariableInfo

public class RealIDInfo extends RealInfo implements VariableIDInfo
Same as a RealInfo, but with an additional int id field.
See Also:
  • Constructor Details

    • RealIDInfo

      public RealIDInfo(String name, int count, double max, double min, double mean, double sumSquares, int id)
      Constructs a real id info from the supplied arguments.
      Parameters:
      name - The feature name.
      count - The feature occurrence count.
      max - The maximum observed value.
      min - The minimum observed value.
      mean - The observed mean.
      sumSquares - The observed sum of squared values.
      id - The id number.
    • RealIDInfo

      public RealIDInfo(RealInfo info, int id)
      Constructs a deep copy of the supplied real info and id.
      Parameters:
      info - The info to copy.
      id - The new id number.
  • Method Details