Uses of Class
org.debellor.core.DataObject

Packages that use DataObject
org.debellor.base.evaluator.score   
org.debellor.core   
org.debellor.core.data   
org.debellor.core.exception.data   
org.debellor.rseslib   
 

Uses of DataObject in org.debellor.base.evaluator.score
 

Methods in org.debellor.base.evaluator.score with parameters of type DataObject
abstract  void Score.add(DataObject target, DataObject prediction)
          Update the score with another pair of (target,prediction) decisions.
 void Accuracy.add(DataObject target, DataObject prediction)
           
 void RMSE.add(DataObject target, DataObject prediction)
           
 

Uses of DataObject in org.debellor.core
 

Subclasses of DataObject in org.debellor.core
 class Sample
          Sample of data, also known as an instance/object/vector, the basic unit of data transfer between cells (see Cell.Stream.next()).
 

Fields in org.debellor.core declared as DataObject
 DataObject Sample.data
          Input data on which data processing algorithms will primarily work.
 DataObject Sample.decision
          Decision (also known as target/decision/prediction/output value) associated with the Sample.data.
 

Fields in org.debellor.core with type parameters of type DataObject
 java.lang.Class<? extends DataObject> DataType.dataClass
          If dataClass is not null, corresponding data objects in all samples of the data set will be instances of the dataClass class or will be missing (null references).
 

Methods in org.debellor.core with parameters of type DataObject
 Sample Sample.setData(DataObject data)
           
 Sample Sample.setDecision(DataObject decision)
           
 

Constructors in org.debellor.core with parameters of type DataObject
Sample(DataObject data, DataObject decision)
           
 

Constructor parameters in org.debellor.core with type arguments of type DataObject
DataType(java.lang.Class<? extends DataObject> dataClass)
           
 

Uses of DataObject in org.debellor.core.data
 

Subclasses of DataObject in org.debellor.core.data
 class DataVector
          Represents vectors of data items of different types.
 class NumericFeature
           
 class SymbolicFeature
          Represents value of a symbolic feature/attribute.
 

Methods in org.debellor.core.data that return DataObject
 DataObject[] DataVector.get()
          Returns a shallow copy> of the array of items of this DataVector.
 DataObject DataVector.get(int i)
           
 

Constructors in org.debellor.core.data with parameters of type DataObject
DataVector(DataObject... items)
          Constructs a new DataVector containing the items passed as an array or a variable-length list of DataObjects.
 

Uses of DataObject in org.debellor.core.exception.data
 

Constructors in org.debellor.core.exception.data with parameters of type DataObject
DataCastException(DataObject dataObject, java.lang.Class<? extends DataObject> expectedClass)
           
 

Constructor parameters in org.debellor.core.exception.data with type arguments of type DataObject
DataCastException(DataObject dataObject, java.lang.Class<? extends DataObject> expectedClass)
           
UnsupportedDataTypeException(java.lang.Object obj, java.lang.Class<? extends DataObject> dataClass)
           
 

Uses of DataObject in org.debellor.rseslib
 

Methods in org.debellor.rseslib that return DataObject
static DataObject DataConverter.attrFromRseslibValue(double v, DataType attrType)