| Package | Description |
|---|---|
| weka.core.converters | |
| weka.gui | |
| weka.gui.explorer |
| Modifier and Type | Class and Description |
|---|---|
class |
ArffSaver
Writes to a destination in arff text format.
|
class |
C45Saver
Writes to a destination that is in the format used by the C4.5 algorithm.
Therefore it outputs a names and a data file. |
class |
CSVSaver
Writes to a destination that is in CSV (comma-separated values) format.
|
class |
JSONSaver
Writes to a destination that is in JSON format.
The data can be compressed with gzip, in order to save space. For more information, see JSON homepage: http://www.json.org/ Valid options are: |
class |
LibSVMSaver
Writes to a destination that is in libsvm format.
For more information about libsvm see: http://www.csie.ntu.edu.tw/~cjlin/libsvm/ Valid options are: |
class |
MatlabSaver
Writes Matlab ASCII files, in single or double precision format.
|
class |
SerializedInstancesSaver
Serializes the instances to a file with extension bsi.
|
class |
SVMLightSaver
Writes to a destination that is in svm light format.
For more information about svm light see: http://svmlight.joachims.org/ Valid options are: |
class |
XRFFSaver
Writes to a destination that is in the XML version of the ARFF format.
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractFileSaver |
ConverterUtils.getSaverForExtension(String extension)
tries to determine the saver to use for this kind of extension, returns
null if none can be found.
|
static AbstractFileSaver |
ConverterUtils.getSaverForFile(File file)
tries to determine the saver to use for this kind of file, returns
null if none can be found.
|
static AbstractFileSaver |
ConverterUtils.getSaverForFile(String filename)
tries to determine the saver to use for this kind of file, returns
null if none can be found.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
AbstractFileSaver.runFileSaver(AbstractFileSaver saver,
String[] options)
runs the given saver with the specified options
|
| Modifier and Type | Method and Description |
|---|---|
AbstractFileSaver |
ConverterFileChooser.getSaver()
returns the saver that was chosen by the user, can be null in case the
user aborted the dialog or the open dialog was shown.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PreprocessPanel.saveInstancesToFile(AbstractFileSaver saver,
Instances inst)
saves the data with the specified saver
|
Copyright © 2013 University of Waikato, Hamilton, NZ. All Rights Reserved.