Uses of Interface
weka.filters.StreamableFilter

Packages that use StreamableFilter
weka.filters.unsupervised.attribute   
weka.filters.unsupervised.instance   
 

Uses of StreamableFilter in weka.filters.unsupervised.attribute
 

Classes in weka.filters.unsupervised.attribute that implement StreamableFilter
 class Add
          An instance filter that adds a new attribute to the dataset.
 class AddExpression
          Applys a mathematical expression involving attributes and numeric constants to a dataset.
 class Copy
          An instance filter that copies a range of attributes in the dataset.
 class FirstOrder
          This instance filter takes a range of N numeric attributes and replaces them with N-1 numeric attributes, the values of which are the difference between consecutive attribute values from the original instance. eg: Original attribute values
0.1, 0.2, 0.3, 0.1, 0.3 New attribute values
0.1, 0.1, 0.1, -0.2, -0.2 The range of attributes used is taken in numeric order.
 class MakeIndicator
          Creates a new dataset with a boolean attribute replacing a nominal attribute.
 class MergeTwoValues
          Merges two values of a nominal attribute.
 class NumericToBinary
          Converts all numeric attributes into binary attributes (apart from the class attribute): if the value of the numeric attribute is exactly zero, the value of the new attribute will be zero.
 class NumericTransform
          Transforms numeric attributes using a given transformation method.
 class Obfuscate
          A simple instance filter that renames the relation, all attribute names and all nominal (and string) attribute values.
 class Remove
          An instance filter that deletes a range of attributes from the dataset.
 class RemoveType
          A filter that removes attributes of a given type.
 class SwapValues
          Swaps two values of a nominal attribute.
 

Uses of StreamableFilter in weka.filters.unsupervised.instance
 

Classes in weka.filters.unsupervised.instance that implement StreamableFilter
 class NonSparseToSparse
          A filter that converts all incoming instances into sparse format.
 class RemoveWithValues
          Filters instances according to the value of an attribute.
 class SparseToNonSparse
          A filter that converts all incoming sparse instances into non-sparse format.