Uses of Class
net.sf.myra.datamining.data.Attribute

Packages that use Attribute
net.sf.myra.datamining.data   
net.sf.myra.datamining.io   
 

Uses of Attribute in net.sf.myra.datamining.data
 

Subclasses of Attribute in net.sf.myra.datamining.data
 class ContinuousAttribute
          This class represents a continuous attribute.
 class NominalAttribute
          This class represents a nominal attribute.
 

Methods in net.sf.myra.datamining.data that return Attribute
 Attribute Attribute.clone()
           
 Attribute Metadata.get(int index)
           
 Attribute Metadata.get(java.lang.String attributeName)
          Returns the Attribute instance given its name.
 

Methods in net.sf.myra.datamining.data that return types with arguments of type Attribute
 java.util.Collection<Attribute> Metadata.getAttributes()
          Returns the collection attributes.
 java.util.Collection<Attribute> Metadata.getPredictor()
          Returns the collection of predictor attributes.
 

Methods in net.sf.myra.datamining.data with parameters of type Attribute
 void Metadata.add(Attribute attribute)
          Adds an attribute.
 int Attribute.compareTo(Attribute o)
           
 boolean Dataset.contains(Attribute attribute, java.lang.String value)
          Checks if the dataset contains an instance with the (attribute,value) pair.
 boolean NominalAttribute.equals(Attribute o)
           
 boolean Attribute.equals(Attribute o)
           
 java.util.List<Instance> Dataset.getInstances(Attribute attribute, java.lang.String value)
          Returns the list of instances that have the specified (attribute, value) combination.
 java.lang.String Instance.getValue(Attribute attribute)
          Returns the instance value for the specified attribute.
 boolean Metadata.isTarget(Attribute attribute)
          Returns true if the specified attribute is the class attribute.
 void Dataset.remove(Attribute attribute)
          Removes the specified attribute from the dataset.
 void Instance.set(Attribute attribute, java.lang.String value)
          Sets the value of the specified attribute.
 

Uses of Attribute in net.sf.myra.datamining.io
 

Subclasses of Attribute in net.sf.myra.datamining.io
protected static class ArffHelper.UnsupportedAttribute
          This class represents an unsupported attribute (e.g.
 

Methods in net.sf.myra.datamining.io with parameters of type Attribute
protected  void ArffHelper.writeAttribute(Attribute attribute, java.io.PrintWriter writer)
          Writes the ARFF attribute information.
 



Copyright © 2013. All Rights Reserved.