Example usage for weka.core Drawable NOT_DRAWABLE

List of usage examples for weka.core Drawable NOT_DRAWABLE

Introduction

In this page you can find the example usage for weka.core Drawable NOT_DRAWABLE.

Prototype

int NOT_DRAWABLE

To view the source code for weka.core Drawable NOT_DRAWABLE.

Click Source Link

Usage

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;
}