Uses of Interface
netkit.classifiers.aggregators.Aggregator

Packages that use Aggregator
netkit.classifiers.aggregators   
netkit.classifiers.relational   
 

Uses of Aggregator in netkit.classifiers.aggregators
 

Subinterfaces of Aggregator in netkit.classifiers.aggregators
 interface AggregatorByValue
          The AggregatorByValue extends a normal aggregator by aggregating on a specific given attribute value (e.g., how often did 'aquavit' appear in the aggregation neighborhood).
 

Classes in netkit.classifiers.aggregators that implement Aggregator
 class AggregatorByValueImp
          This should be the parent class for any AggregatorByValue class.
 class AggregatorImp
          This should be the parent for any Aggregator class.
 class Count
          The Count aggregator counts the number of times a specific value of a given attribute is observed in the neighborhood of a node in the graph.
 class Exist
          The Exist aggregator returns whether a specific value of a given attribute is observed in the neighborhood of a node in the graph.
 class Max
          The Max aggregator returns the maximum value observed for a continuous attribute in the neighborhood of a node in the graph.
 class Mean
          The Mean aggregator returns the mean value observed for a continuous attribute in the neighborhood of a node in the graph.
 class Min
          The Min aggregator returns the minimum value observed for a continuous attribute in the neighborhood of a node in the graph.
 class Mode
          The Mode aggregator counts the number of times each possible value of a given attribute is observed in the neighborhood of a node in the graph and returns the value that is observed the most.
 class Ratio
          The Ratio aggregator counts the ratio of times a specific value of a given attribute is observed in the neighborhood of a node in the graph.
 

Methods in netkit.classifiers.aggregators that return Aggregator
 Aggregator AggregatorFactory.get(java.lang.String name)
          Get an instance of the fully named aggregator.
 Aggregator AggregatorFactory.get(java.lang.String name, Configuration defaultConf)
          Get an instance of the fully named aggregator using a given Configuration map.
 Aggregator AggregatorFactory.get(java.lang.String name, EdgeType[] edgeTypes, Attribute attribute)
          This is not yet supported.
 Aggregator AggregatorFactory.get(java.lang.String name, EdgeType[] edgeTypes, Attribute attribute, Configuration defaultConf)
          This is not yet supported.
 Aggregator AggregatorFactory.get(java.lang.String name, EdgeType[] edgeTypes, Attribute attribute, double value)
          This is not yet supported.
 Aggregator AggregatorFactory.get(java.lang.String name, EdgeType[] edgeTypes, Attribute attribute, double value, Configuration defaultConf)
          This is not yet supported.
 Aggregator AggregatorFactory.get(java.lang.String name, EdgeType edgeType, Attribute attribute)
          Get an instance of the named general attribute aggregator for the given relation and attribute.
 Aggregator AggregatorFactory.get(java.lang.String name, EdgeType edgeType, Attribute attribute, Configuration defaultConf)
          Get an instance of the named general attribute aggregator for the given relation and attribute.
 Aggregator AggregatorFactory.get(java.lang.String name, EdgeType edgeType, Attribute attribute, double value)
          Get an instance of the named attribute aggregator-by-value for the given relation, attribute and value.
 Aggregator AggregatorFactory.get(java.lang.String name, EdgeType edgeType, Attribute attribute, double value, Configuration defaultConf)
          Get an instance of the named attribute aggregator-by-value for the given relation, attribute and value.
 

Uses of Aggregator in netkit.classifiers.relational
 

Fields in netkit.classifiers.relational with type parameters of type Aggregator
protected  java.util.List<Aggregator> NetworkClassifierImp.aggregators
          This list contains all the aggregators for an input graph.
protected  java.util.List<Aggregator> NetworkClassifierImp.dynamicAggregators
          This list contains the 'dynamic' aggregators...