List of usage examples for weka.core Drawable NOT_DRAWABLE
int NOT_DRAWABLE
To view the source code for weka.core Drawable NOT_DRAWABLE.
Click Source Link
From source file:LogReg.FilteredLogRegClassifier.java
License:Open Source License
/** * Returns the type of graph this classifier * represents.//from ww w .j a v a2 s. c o m * * @return the graph type of this classifier */ public int graphType() { if (m_Classifier instanceof Drawable) return ((Drawable) m_Classifier).graphType(); else return Drawable.NOT_DRAWABLE; }