Uses of Interface
elki.data.NumberVector.Factory
-
Packages that use NumberVector.Factory Package Description elki.data Basic classes for different data types, database object types and label types.elki.data.model Cluster models classes for various algorithms.elki.data.projection Data projections.elki.database.relation Relations, materialized and virtual (views).elki.datasource.filter Data filtering, in particular for normalization and projection.elki.datasource.filter.cleaning Filters for data cleaning.elki.datasource.filter.normalization.columnwise Normalizations operating on columns / variates; where each column is treated independently.elki.datasource.filter.transform Data space transformations.elki.datasource.parser Parsers for different file formats and data types.elki.visualization.projections Visualization projections. -
-
Uses of NumberVector.Factory in elki.data
Subinterfaces of NumberVector.Factory in elki.data Modifier and Type Interface Description static interface
SparseNumberVector.Factory<V extends SparseNumberVector>
Factory for sparse number vectors: make from a dim-value map.Classes in elki.data that implement NumberVector.Factory Modifier and Type Class Description static class
BitVector.Factory
Factory for bit vectors.static class
ByteVector.Factory
Factory for Byte vectors.static class
DoubleVector.Factory
Factory for Double vectors.static class
FloatVector.Factory
Factory for float vectors.static class
IntegerVector.Factory
Factory for integer vectors.static class
OneDimensionalDoubleVector.Factory
Factory class.static class
ShortVector.Factory
Factory for Short vectors.static class
SparseByteVector.Factory
Factory class.static class
SparseDoubleVector.Factory
Factory class.static class
SparseFloatVector.Factory
Factory class.static class
SparseIntegerVector.Factory
Factory class.static class
SparseShortVector.Factory
Factory class.Methods in elki.data with parameters of type NumberVector.Factory Modifier and Type Method Description static <V extends NumberVector>
VVectorUtil. project(V v, long[] selectedAttributes, NumberVector.Factory<V> factory)
Project a number vector to the specified attributes.static <V extends NumberVector>
VVectorUtil. randomVector(NumberVector.Factory<V> factory, int dim)
Produce a new vector based on random numbers in [0:1].static <V extends NumberVector>
VVectorUtil. randomVector(NumberVector.Factory<V> factory, int dim, java.util.Random r)
Produce a new vector based on random numbers in [0:1]. -
Uses of NumberVector.Factory in elki.data.model
Methods in elki.data.model with parameters of type NumberVector.Factory Modifier and Type Method Description static <V extends NumberVector>
VModelUtil. getPrototype(Model model, Relation<? extends V> relation, NumberVector.Factory<V> factory)
Get (and convert!)static <V extends NumberVector>
VModelUtil. getPrototypeOrCentroid(Model model, Relation<? extends V> relation, DBIDs ids, NumberVector.Factory<V> factory)
Get the representative vector for a cluster model, or compute the centroid. -
Uses of NumberVector.Factory in elki.data.projection
Fields in elki.data.projection declared as NumberVector.Factory Modifier and Type Field Description private NumberVector.Factory<V>
LatLngToECEFProjection. factory
Vector factory to use.private NumberVector.Factory<V>
LngLatToECEFProjection. factory
Vector factory to use.private NumberVector.Factory<V>
NumericalFeatureSelection. factory
Object factory.private NumberVector.Factory<V>
RandomProjection. factory
Vector factory. -
Uses of NumberVector.Factory in elki.database.relation
Methods in elki.database.relation that return NumberVector.Factory Modifier and Type Method Description static <V extends NumberVector>
NumberVector.Factory<V>RelationUtil. getNumberVectorFactory(Relation<V> relation)
Get the number vector factory of a database relation. -
Uses of NumberVector.Factory in elki.datasource.filter
Fields in elki.datasource.filter declared as NumberVector.Factory Modifier and Type Field Description protected NumberVector.Factory<O>
AbstractVectorConversionFilter. factory
Number vector factory.protected NumberVector.Factory<O>
AbstractVectorStreamConversionFilter. factory
Number vector factory.Methods in elki.datasource.filter that return NumberVector.Factory Modifier and Type Method Description static <V extends NumberVector>
NumberVector.Factory<V>FilterUtil. guessFactory(SimpleTypeInformation<V> in)
Try to guess the appropriate factory. -
Uses of NumberVector.Factory in elki.datasource.filter.cleaning
Fields in elki.datasource.filter.cleaning declared as NumberVector.Factory Modifier and Type Field Description private NumberVector.Factory<?>[]
ReplaceNaNWithRandomFilter. densecols
Columns to check. -
Uses of NumberVector.Factory in elki.datasource.filter.normalization.columnwise
Fields in elki.datasource.filter.normalization.columnwise declared as NumberVector.Factory Modifier and Type Field Description protected NumberVector.Factory<V>
AttributeWiseBetaNormalization. factory
Number vector factory.protected NumberVector.Factory<V>
AttributeWiseCDFNormalization. factory
Number vector factory.protected NumberVector.Factory<V>
AttributeWiseMADNormalization. factory
Number vector factory. -
Uses of NumberVector.Factory in elki.datasource.filter.transform
Fields in elki.datasource.filter.transform declared as NumberVector.Factory Modifier and Type Field Description (package private) NumberVector.Factory<O>
ClassicMultidimensionalScalingTransform. factory
Vector factory.(package private) NumberVector.Factory<O>
ClassicMultidimensionalScalingTransform.Par. factory
Vector factory.(package private) NumberVector.Factory<O>
FastMultidimensionalScalingTransform. factory
Vector factory.(package private) NumberVector.Factory<O>
FastMultidimensionalScalingTransform.Par. factory
Vector factory.private NumberVector.Factory<V>
LatLngToECEFFilter. factory
Vector factory to use.private NumberVector.Factory<V>
LngLatToECEFFilter. factory
Vector factory to use.Methods in elki.datasource.filter.transform with parameters of type NumberVector.Factory Modifier and Type Method Description protected SimpleTypeInformation<?>
AbstractSupervisedProjectionVectorFilter. convertedType(SimpleTypeInformation<?> in, NumberVector.Factory<V> factory)
Get the output type from the input type after conversion.Constructors in elki.datasource.filter.transform with parameters of type NumberVector.Factory Constructor Description ClassicMultidimensionalScalingTransform(int tdim, PrimitiveDistance<? super I> dist, NumberVector.Factory<O> factory)
Constructor.FastMultidimensionalScalingTransform(int tdim, PrimitiveDistance<? super I> dist, NumberVector.Factory<O> factory, RandomFactory random)
Constructor. -
Uses of NumberVector.Factory in elki.datasource.parser
Fields in elki.datasource.parser declared as NumberVector.Factory Modifier and Type Field Description (package private) NumberVector.Factory<?>
ArffParser. denseFactory
Factory for dense vectors.protected NumberVector.Factory<V>
NumberVectorLabelParser. factory
Vector factory class.protected NumberVector.Factory<V>
NumberVectorLabelParser.Par. factory
Factory object.Constructors in elki.datasource.parser with parameters of type NumberVector.Factory Constructor Description CategorialDataAsNumberVectorParser(NumberVector.Factory<V> factory)
Constructor with defaults.CategorialDataAsNumberVectorParser(CSVReaderFormat format, long[] labelIndices, NumberVector.Factory<V> factory)
Constructor.NumberVectorLabelParser(NumberVector.Factory<V> factory)
Constructor with defaults.NumberVectorLabelParser(CSVReaderFormat format, long[] labelIndices, NumberVector.Factory<V> factory)
Constructor.NumberVectorLabelParser(java.util.regex.Pattern colSep, java.lang.String quoteChars, java.util.regex.Pattern comment, long[] labelIndices, NumberVector.Factory<V> factory)
Constructor. -
Uses of NumberVector.Factory in elki.visualization.projections
Methods in elki.visualization.projections with parameters of type NumberVector.Factory Modifier and Type Method Description <NV extends NumberVector>
NVAbstractFullProjection. projectRelativeRenderToDataSpace(double[] v, NumberVector.Factory<NV> prototype)
Project a relative vector from rendering space to data space.<NV extends NumberVector>
NVFullProjection. projectRelativeRenderToDataSpace(double[] v, NumberVector.Factory<NV> prototype)
Project a relative vector from rendering space to data space.<NV extends NumberVector>
NVAbstractFullProjection. projectRelativeScaledToDataSpace(double[] v, NumberVector.Factory<NV> prototype)
Project a relative vector from scaled space to data space.<NV extends NumberVector>
NVFullProjection. projectRelativeScaledToDataSpace(double[] v, NumberVector.Factory<NV> prototype)
Project a relative vector from scaled space to data space.<NV extends NumberVector>
NVAbstractFullProjection. projectRenderToDataSpace(double[] v, NumberVector.Factory<NV> prototype)
Project a vector from rendering space to data space.<NV extends NumberVector>
NVFullProjection. projectRenderToDataSpace(double[] v, NumberVector.Factory<NV> prototype)
Project a vector from rendering space to data space.<NV extends NumberVector>
NVAbstractFullProjection. projectScaledToDataSpace(double[] v, NumberVector.Factory<NV> factory)
Project a vector from scaled space to data space.<NV extends NumberVector>
NVFullProjection. projectScaledToDataSpace(double[] v, NumberVector.Factory<NV> factory)
Project a vector from scaled space to data space.
-