Class MergeManyValues

    • Constructor Detail

      • MergeManyValues

        public MergeManyValues()
    • Method Detail

      • globalInfo

        public java.lang.String globalInfo()
        Returns a string describing this filter
        Returns:
        a description of the filter suitable for displaying in the explorer/experimenter gui
      • setOptions

        public void setOptions​(java.lang.String[] options)
                        throws java.lang.Exception
        Parses a given list of options.

        Valid options are:

         -C <col>
          Sets the attribute index
          (default: last)
         
         -L <label>
          Sets the label of the newly merged classes
          (default: 'merged')
         
         -R <range>
          Sets the merge range. 'first and 'last' are accepted as well.'
          E.g.: first-5,7,9,20-last
          (default: 1,2)
         
        Specified by:
        setOptions in interface OptionHandler
        Overrides:
        setOptions in class PotentialClassIgnorer
        Parameters:
        options - the list of options as an array of strings
        Throws:
        java.lang.Exception - if an option is not supported
      • setInputFormat

        public boolean setInputFormat​(Instances instanceInfo)
                               throws java.lang.Exception
        Sets the format of the input instances.
        Overrides:
        setInputFormat in class PotentialClassIgnorer
        Parameters:
        instanceInfo - an Instances object containing the input instance structure (any instances contained in the object are ignored - only the structure is required).
        Returns:
        true if the outputFormat may be collected immediately
        Throws:
        java.lang.Exception - if the input format can't be set successfully
      • input

        public boolean input​(Instance instance)
        Input an instance for filtering. The instance is processed and made available for output immediately.
        Overrides:
        input in class Filter
        Parameters:
        instance - the input instance
        Returns:
        true if the filtered instance may now be collected with output().
        Throws:
        java.lang.IllegalStateException - if no input format has been set.
      • attributeIndexTipText

        public java.lang.String attributeIndexTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the explorer/experimenter gui
      • getAttributeIndex

        public java.lang.String getAttributeIndex()
        Get the index of the attribute used.
        Returns:
        the index of the attribute
      • setAttributeIndex

        public void setAttributeIndex​(java.lang.String attIndex)
        Sets index of the attribute used.
        Parameters:
        attIndex - the index of the attribute
      • labelTipText

        public java.lang.String labelTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the explorer/experimenter gui
      • getLabel

        public java.lang.String getLabel()
        Get the label for the new merged class.
        Returns:
        the label for the merged class.
      • setLabel

        public void setLabel​(java.lang.String alabel)
        Sets label of the merged class.
        Parameters:
        alabel - the new label.
      • getMergeValueRange

        public java.lang.String getMergeValueRange()
        Get the range of the merge values used.
        Returns:
        the range of the merge values
      • mergeValueRangeTipText

        public java.lang.String mergeValueRangeTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the explorer/experimenter gui
      • setMergeValueRange

        public void setMergeValueRange​(java.lang.String range)
        Sets range of the merge values used.
        Parameters:
        range - the range of the merged values
      • main

        public static void main​(java.lang.String[] args)
        Main method for executing this filter.
        Parameters:
        args - use -h to display all options