| Package | Description |
|---|---|
| weka.core.converters | |
| weka.gui | |
| weka.gui.arffviewer | |
| weka.gui.explorer |
| Modifier and Type | Class and Description |
|---|---|
class |
ArffLoader
Reads a source that is in arff (attribute relation
file format) format.
|
class |
C45Loader
Reads a file that is C45 format.
|
class |
CSVLoader
Reads a source that is in comma separated format (the default).
|
class |
JSONLoader
Reads a source that is in the JSON format.
It automatically decompresses the data if the extension is '.json.gz'. For more information, see JSON homepage: http://www.json.org/ |
class |
LibSVMLoader
Reads a source that is in libsvm format.
For more information about libsvm see: http://www.csie.ntu.edu.tw/~cjlin/libsvm/ |
class |
MatlabLoader
Reads a Matlab file containing a single matrix in ASCII format.
|
class |
SerializedInstancesLoader
Reads a source that contains serialized Instances.
|
class |
SVMLightLoader
Reads a source that is in svm light format.
For more information about svm light see: http://svmlight.joachims.org/ |
class |
XRFFLoader
Reads a source that is in the XML version of the ARFF format.
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractFileLoader |
ConverterUtils.getLoaderForExtension(String extension)
tries to determine the loader to use for this kind of extension, returns
null if none can be found.
|
static AbstractFileLoader |
ConverterUtils.getLoaderForFile(File file)
tries to determine the loader to use for this kind of file, returns null if
none can be found.
|
static AbstractFileLoader |
ConverterUtils.getLoaderForFile(String filename)
tries to determine the loader to use for this kind of file, returns null if
none can be found.
|
static AbstractFileLoader |
ConverterUtils.getURLLoaderForExtension(String extension)
tries to determine the URL loader to use for this kind of extension,
returns null if none can be found.
|
static AbstractFileLoader |
ConverterUtils.getURLLoaderForFile(File file)
tries to determine the URL loader to use for this kind of file, returns
null if none can be found.
|
static AbstractFileLoader |
ConverterUtils.getURLLoaderForFile(String filename)
tries to determine the URL loader to use for this kind of file, returns
null if none can be found.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
AbstractFileLoader.runFileLoader(AbstractFileLoader loader,
String[] options)
runs the given loader with the provided options
|
| Modifier and Type | Method and Description |
|---|---|
AbstractFileLoader |
ConverterFileChooser.getLoader()
returns the loader that was chosen by the user, can be null in case the
user aborted the dialog or the save dialog was shown.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ArffViewerMainPanel.loadFile(String filename,
AbstractFileLoader... loaders)
loads the specified file
|
| Constructor and Description |
|---|
ArffPanel(String filename,
AbstractFileLoader... loaders)
initializes the panel and loads the specified file
|
ArffSortedTableModel(String filename,
AbstractFileLoader... loaders)
initializes the sorter w/o a model, but loads the given file and creates
from that a model
|
ArffTableModel(String filename,
AbstractFileLoader... loaders)
initializes the object and loads the given file
|
| Modifier and Type | Method and Description |
|---|---|
void |
PreprocessPanel.setInstancesFromFile(AbstractFileLoader loader)
Loads results from a set of instances retrieved with the supplied loader.
|
Copyright © 2016 University of Waikato, Hamilton, NZ. All Rights Reserved.