Object

plotting

Plotting

Related Doc: package plotting

Permalink

object Plotting

Provides functions for plotting data and algorithm results

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Plotting
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. def plotClf(data: List[List[Double]], labels: List[Int], clf: Classifier, name: String = "plots/clf.pdf"): Unit

    Permalink

    Plot labeled data and classifier decision

    Plot labeled data and classifier decision

    data

    List of features

    labels

    List of labels

    clf

    Trained classifier

    name

    Path to save the plot

  16. def plotClfData(data: List[List[Double]], labels: List[Int], name: String = "plots/data.pdf"): Unit

    Permalink

    Plot labeled data

    Plot labeled data

    data

    List of features

    labels

    List of labels

    name

    Path to save the plot

  17. def plotClfGrid(data: List[List[Double]], clf: Classifier, name: String = "plots/grid.pdf"): Unit

    Permalink

    Plot classifier decision areas on an envelope plane of the data

    Plot classifier decision areas on an envelope plane of the data

    data

    List of features

    clf

    Trained classifier

    name

    Path to save the plot

  18. def plotClu(data: List[List[Double]], predictions: List[Int], clu: Clustering, drawCentroids: Boolean = false, name: String = "plots/clu.pdf"): Unit

    Permalink

    Plot data and cluster association.

    Plot data and cluster association. If dimensionality of data > 2, use first principal components as axes.

    data

    List of features

    predictions

    List of predicted classes

    clu

    Trained classifier

    name

    Path to save the plot

  19. def plotCluGrid(data: List[List[Double]], clu: Clustering, name: String = "plots/grid.pdf"): Unit

    Permalink

    Plot clustering decision areas on an envelope plane of the data

    Plot clustering decision areas on an envelope plane of the data

    data

    List of features

    clu

    Trained clusterer

    name

    Path to save the plot

  20. def plotCurves(curves: List[List[(Double, Double)]], names: List[String] = Nil, name: String = "plots/curves.pdf", xlabel: String = "Training epoch", ylabel: String = ""): Unit

    Permalink

    Plot a set of curves

    Plot a set of curves

    curves

    List of curves, with a curve being a list of points (x, y)

    names

    List of the curves' names

    name

    Path to save the plot

  21. def plotReg(data: List[List[Double]], labels: List[Double], reg: Regressor, name: String = "plots/reg.pdf"): Unit

    Permalink

    Plot data for regression

    Plot data for regression

    data

    List of features, e.g. in 2D: x-coordinates

    labels

    List of labels, e.g. in 2D: y-coordinates

    reg

    Trained regressor

    name

    Path to save the plot

  22. def plotRegData(data: List[List[Double]], labels: List[Double], name: String = "plots/data.pdf"): Unit

    Permalink

    Plot data for regression

    Plot data for regression

    data

    List of features, e.g. in 2D: x-coordinates

    labels

    List of labels, e.g. in 2D: y-coordinates

    name

    Path to save the plot

  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped