Package | Description |
---|---|
de.lmu.ifi.dbs.elki.datasource |
Data normalization (and reconstitution) of data sets.
|
de.lmu.ifi.dbs.elki.datasource.parser |
Parsers for different file formats and data types.
|
Modifier and Type | Field and Description |
---|---|
protected Parser |
AbstractDatabaseConnection.Parameterizer.parser
Parser to use
|
private Parser |
ConcatenateFilesDatabaseConnection.parser
The parser.
|
(package private) Parser |
InputStreamDatabaseConnection.parser
Holds the instance of the parser.
|
Constructor and Description |
---|
ConcatenateFilesDatabaseConnection(List<File> files,
Parser parser,
List<ObjectFilter> filters)
Constructor.
|
FileBasedDatabaseConnection(List<ObjectFilter> filters,
Parser parser,
InputStream in)
Constructor.
|
InputStreamDatabaseConnection(List<ObjectFilter> filters,
Parser parser)
Constructor.
|
Modifier and Type | Interface and Description |
---|---|
interface |
StreamingParser
Interface for streaming parsers, that may be much more efficient in
combination with filters.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractStreamingParser
Base class for streaming parsers.
|
class |
ArffParser
Parser to load WEKA .arff files into ELKI.
|
class |
BitVectorLabelParser
Provides a parser for parsing one BitVector per line, bits separated by
whitespace.
|
class |
CategorialDataAsNumberVectorParser<V extends NumberVector<?>>
A very simple parser for categorial data, which will then be encoded as
numbers.
|
class |
DoubleVectorLabelParser
Deprecated.
Use NumberVectorLabelParser instead, which defaults to
DoubleVector.
|
class |
FloatVectorLabelParser
Deprecated.
Use NumberVectorLabelParser instead, and use vector type FloatVector.
|
class |
NumberVectorLabelParser<V extends NumberVector<?>>
Provides a parser for parsing one point per line, attributes separated by
whitespace.
|
class |
SimplePolygonParser
Parser to load polygon data (2D and 3D only) from a simple format.
|
class |
SparseBitVectorLabelParser
Provides a parser for parsing one sparse BitVector per line, where the
indices of the one-bits are separated by whitespace.
|
class |
SparseFloatVectorLabelParser
Deprecated.
Use
SparseNumberVectorLabelParser instead! |
class |
SparseNumberVectorLabelParser<V extends SparseNumberVector<?>>
Provides a parser for parsing one point per line, attributes separated by
whitespace.
|
class |
StringParser
Parser that loads a text file for use with string similarity measures.
|
class |
TermFrequencyParser<V extends SparseNumberVector<?>>
A parser to load term frequency data, which essentially are sparse vectors
with text keys.
|