Package weka.core
Interface Drawable
-
- All Known Implementing Classes:
ADTree,AttributeSelectedClassifier,BayesNet,BayesNetGenerator,BIFReader,C45PruneableClassifierTree,C45PruneableClassifierTreeG,ClassifierTree,Cobweb,CostSensitiveClassifier,CVParameterSelection,EditableBayesNet,FilteredClassifier,FT,HierarchicalClusterer,J48,J48graft,LADTree,LMT,M5P,NBTree,NBTreeClassifierTree,PruneableClassifierTree,RandomTree,REPTree,ThresholdSelector,UserClassifier
public interface DrawableInterface to something that can be drawn as a graph.- Version:
- $Revision: 6589 $
- Author:
- Ashraf M. Kibriya(amk14@cs.waikato.ac.nz), Eibe Frank(eibe@cs.waikato.ac.nz)
-
-
Field Summary
Fields Modifier and Type Field Description static intBayesNetstatic intNewickstatic intNOT_DRAWABLEstatic intTREE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringgraph()Returns a string that describes a graph representing the object.intgraphType()Returns the type of graph representing the object.
-
-
-
Field Detail
-
NOT_DRAWABLE
static final int NOT_DRAWABLE
- See Also:
- Constant Field Values
-
TREE
static final int TREE
- See Also:
- Constant Field Values
-
BayesNet
static final int BayesNet
- See Also:
- Constant Field Values
-
Newick
static final int Newick
- See Also:
- Constant Field Values
-
-
Method Detail
-
graphType
int graphType()
Returns the type of graph representing the object.- Returns:
- the type of graph representing the object
-
graph
java.lang.String graph() throws java.lang.ExceptionReturns a string that describes a graph representing the object. The string should be in XMLBIF ver. 0.3 format if the graph is a BayesNet, otherwise it should be in dotty format.- Returns:
- the graph described by a string
- Throws:
java.lang.Exception- if the graph can't be computed
-
-