Class VariableGeneratorOptions


  • public final class VariableGeneratorOptions
    extends Object
    Options that affect the generation of variables from data.
    • Constructor Detail

      • VariableGeneratorOptions

        public VariableGeneratorOptions()
    • Method Detail

      • getDataProgress

        public DataProgress getDataProgress()
        Reports progress on the number of cases read.
      • setDataProgress

        public void setDataProgress​(DataProgress value)
        Reports progress on the number of cases read.
      • getDetectIntegralFloats

        public boolean getDetectIntegralFloats()
        Gets a value, which when true tests floating point column data to see if the data is an integral type, which would then become a candidate to be a discrete variable when VariableValueType is not specified.
      • setDetectIntegralFloats

        public void setDetectIntegralFloats​(boolean value)
        Sets a value, which when true tests floating point column data to see if the data is an integral type, which would then become a candidate to be a discrete variable when VariableValueType is not specified.
      • getAutoDetectDiscreteLimit

        public int getAutoDetectDiscreteLimit()
        Gets the distinct value count, which when exceeded changes a variable from discrete to continuous. This only applies when the variable's value type is undefined..
      • setAutoDetectDiscreteLimit

        public void setAutoDetectDiscreteLimit​(int value)
        Sets the distinct value count, which when exceeded changes a variable from discrete to continuous. This only applies when the variable's value type is undefined..
      • getWeightColumn

        public String getWeightColumn()
        Gets the name of a column which contains a weight (support) for each case. A weight is a positive numeric value, which is often an integer value which indicates the number of duplicates for a case, but could also be a numeric value such as a probability.
      • setWeightColumn

        public void setWeightColumn​(String value)
        Sets the name of a column which contains a weight (support) for each case. A weight is a positive numeric value, which is often an integer value which indicates the number of duplicates for a case, but could also be a numeric value such as a probability.