Uses of Interface
com.pervasive.datarush.sequences.scalar.DoubleTokenSequence
-
Packages that use DoubleTokenSequence Package Description com.pervasive.datarush.analytics.pmml Provides shared and base classes for PMML model representation of Analytics algorithms.com.pervasive.datarush.analytics.svm Provides PMML model classes for SVM.com.pervasive.datarush.sequences.scalar Provides implementations of sequences of scalar token values. -
-
Uses of DoubleTokenSequence in com.pervasive.datarush.analytics.pmml
Methods in com.pervasive.datarush.analytics.pmml that return DoubleTokenSequence Modifier and Type Method Description static DoubleTokenSequence
PMMLArrays. parseSparseChildArrayElement(Element element)
Parses the single childREAL-SparseArray
orINT-SparseArray
element.Methods in com.pervasive.datarush.analytics.pmml with parameters of type DoubleTokenSequence Modifier and Type Method Description static void
PMMLArrays. addSparseChildArrayElement(Element element, DoubleTokenSequence sequence)
Adds a childREAL-SparseArray
element to the given element. -
Uses of DoubleTokenSequence in com.pervasive.datarush.analytics.svm
Methods in com.pervasive.datarush.analytics.svm that return types with arguments of type DoubleTokenSequence Modifier and Type Method Description Map<String,DoubleTokenSequence>
VectorDictionary. getVectorsByID()
Returns the mapping from vector id to vector.Method parameters in com.pervasive.datarush.analytics.svm with type arguments of type DoubleTokenSequence Modifier and Type Method Description void
VectorDictionary. setVectorsByID(Map<String,DoubleTokenSequence> vectorsByID)
Sets the mapping from vector id to vector. -
Uses of DoubleTokenSequence in com.pervasive.datarush.sequences.scalar
Subinterfaces of DoubleTokenSequence in com.pervasive.datarush.sequences.scalar Modifier and Type Interface Description interface
FloatTokenSequence
ATokenSequence
containing float valued data.interface
IntTokenSequence
ATokenSequence
containing integer valued data.interface
LongTokenSequence
ATokenSequence
containing long valued data.interface
MoneyTokenSequence
ATokenSequence
containing money valued data.interface
MutableDoubleTokenSequence
AMutableTokenSequence
containing double valued data.interface
MutableFloatTokenSequence
AMutableTokenSequence
containing float valued data.interface
MutableIntTokenSequence
AMutableTokenSequence
containing integer valued data.interface
MutableLongTokenSequence
AMutableTokenSequence
containing long valued data.interface
MutableMoneyTokenSequence
AMutableTokenSequence
containing money valued data.Classes in com.pervasive.datarush.sequences.scalar that implement DoubleTokenSequence Modifier and Type Class Description class
DoubleTokenList
Primary implementation ofMutableDoubleTokenSequence
.class
FloatTokenList
Primary implementation ofMutableFloatTokenSequence
.class
IntTokenList
Primary implementation ofMutableIntTokenSequence
.class
LongTokenList
Primary implementation ofMutableLongTokenSequence
.class
MoneyTokenList
Primary implementation ofMutableMoneyTokenSequence
.class
SparseDoubleTokenList
An implementation ofMutableDoubleTokenSequence
which stores data sparsely.class
SparseFloatTokenList
An implementation ofMutableFloatTokenSequence
which stores data sparsely.class
SparseIntTokenList
An implementation ofMutableIntTokenSequence
which stores data sparsely.class
SparseLongTokenList
An implementation ofMutableLongTokenSequence
which stores data sparsely.class
SparseMoneyTokenList
An implementation ofMutableMoneyTokenSequence
which stores data sparsely.
-