Uses of Interface
adams.data.weka.columnfinder.ColumnFinder
-
Packages that use ColumnFinder Package Description adams.data.weka.columnfinder adams.data.weka.datasetsplitter adams.flow.transformer.wekadatasetsmerge weka.filters.unsupervised.attribute -
-
Uses of ColumnFinder in adams.data.weka.columnfinder
Subinterfaces of ColumnFinder in adams.data.weka.columnfinder Modifier and Type Interface Description interfaceTrainableColumnFinderInterface forColumnFinderalgorithms that can be trained.Classes in adams.data.weka.columnfinder that implement ColumnFinder Modifier and Type Class Description classAbstractColumnFinderAncestor for classes that find columns of interest in datasets.classAbstractColumnFinderWithCapabilitiesAncestor for classes that find columns of interest in datasets.classAbstractFilteredColumnFinderAncestor for column finders that pre-filter the columns.classAbstractTrainableColumnFinderAncestor forColumnFinderalgorithms that can be trained.classAllFinderDummy finder, finds all columns.classByExactNameReturns indices of columns which names match the exact name.classByNameReturns indices of attributes which names match the regular expression.classClassColumn finder which finds the class column (if one is set).classConstantColumn finder that finds a constant set of columns.classInvertInverts the selected columns of the provided sub-column-filter.classMultiColumnFinderApplies multiple column finding algorithms to the data.
The indices can be either joined or intersected.classNullFinderDummy finder, does not find any columns.classRowFilteredColumnFinderThis column finder first filters the rows before finding any columns on the subset of rows.Fields in adams.data.weka.columnfinder declared as ColumnFinder Modifier and Type Field Description protected ColumnFinderAbstractFilteredColumnFinder. m_ColumnFinderthe ColumnFinder to apply.protected ColumnFinder[]MultiColumnFinder. m_Findersthe column finders to use.Methods in adams.data.weka.columnfinder that return ColumnFinder Modifier and Type Method Description static ColumnFinderAbstractColumnFinder. forCommandLine(String cmdline)Instantiates the column finder from the given commandline (i.e., classname and optional options).static ColumnFinderAbstractColumnFinder. forName(String classname, String[] options)Instantiates the column finder with the given options.ColumnFinderAbstractFilteredColumnFinder. getColumnFinder()Returns the column finder in use.ColumnFinder[]MultiColumnFinder. getFinders()Returns the column finders in use.ColumnFinderAbstractColumnFinder. shallowCopy()Returns a shallow copy of itself, i.e., based on the commandline options.ColumnFinderAbstractColumnFinder. shallowCopy(boolean expand)Returns a shallow copy of itself, i.e., based on the commandline options.Methods in adams.data.weka.columnfinder with parameters of type ColumnFinder Modifier and Type Method Description voidAbstractFilteredColumnFinder. setColumnFinder(ColumnFinder value)Sets the column finder to use.voidMultiColumnFinder. setFinders(ColumnFinder[] value)Sets the column finders to use. -
Uses of ColumnFinder in adams.data.weka.datasetsplitter
Fields in adams.data.weka.datasetsplitter declared as ColumnFinder Modifier and Type Field Description protected ColumnFinderColumnSplitter. m_ColumnFinderColumn-finder for selecting which attributes go in which dataset.Methods in adams.data.weka.datasetsplitter that return ColumnFinder Modifier and Type Method Description ColumnFinderColumnSplitter. getColumnFinder()Gets the column finder.Methods in adams.data.weka.datasetsplitter with parameters of type ColumnFinder Modifier and Type Method Description voidColumnSplitter. setColumnFinder(ColumnFinder value)Sets the column finder. -
Uses of ColumnFinder in adams.flow.transformer.wekadatasetsmerge
Fields in adams.flow.transformer.wekadatasetsmerge declared as ColumnFinder Modifier and Type Field Description protected ColumnFinderAbstractMerge. m_ClassFinderThe column finder for selecting class attributes.Methods in adams.flow.transformer.wekadatasetsmerge that return ColumnFinder Modifier and Type Method Description ColumnFinderAbstractMerge. getClassFinder()Gets the finder to use for finding class attributes in the source datasets.Methods in adams.flow.transformer.wekadatasetsmerge with parameters of type ColumnFinder Modifier and Type Method Description voidAbstractMerge. setClassFinder(ColumnFinder value)Sets the finder to use for finding class attributes in the source datasets. -
Uses of ColumnFinder in weka.filters.unsupervised.attribute
Fields in weka.filters.unsupervised.attribute declared as ColumnFinder Modifier and Type Field Description protected ColumnFinderAbstractColumnFinderApplier. m_ColumnFinderThe classifier template used to do the classification.protected ColumnFinderAttributeSummaryTransferFilter. m_ColumnFinderThe column-finder which selects the attributes to summarise.Methods in weka.filters.unsupervised.attribute that return ColumnFinder Modifier and Type Method Description ColumnFinderAbstractColumnFinderApplier. getColumnFinder()Returns the column finder used by the filter.ColumnFinderAttributeSummaryTransferFilter. getColumnFinder()Gets the column finder which selects the attributes for summarisation.ColumnFinderAttributeSummaryTransferFilter. getDefaultColumnFinder()Gets the default column finder which selects the attributes for summarisation.Methods in weka.filters.unsupervised.attribute with parameters of type ColumnFinder Modifier and Type Method Description voidAbstractColumnFinderApplier. setColumnFinder(ColumnFinder value)Sets the column finder to use.voidAttributeSummaryTransferFilter. setColumnFinder(ColumnFinder value)Sets the column finder which selects the attributes for summarisation.
-