axle

visualize

package visualize

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. visualize
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class AxleFrame extends JFrame

  2. class BackgroundPanel extends JPanel

  3. case class BarChart[S, Y, D](initialValue: D, slicesFn: (D) ⇒ Traversable[S], s2y: (D, S) ⇒ Y, sLabeller: (S) ⇒ String = (s: S) => s.toString, drawKey: Boolean = true, width: Int = 700, height: Int = 600, border: Int = 50, barWidthPercent: Double = 0.80, keyLeftPadding: Int = 20, keyTopPadding: Int = 50, keyWidth: Int = 80, title: Option[String] = None, normalFontName: String = "Courier New", normalFontSize: Int = 12, titleFontName: String = "Palatino", titleFontSize: Int = 20, xAxis: Y, xAxisLabel: Option[String] = None, yAxisLabel: Option[String] = None, labelAngle: UnittedQuantity[Angle, Double] = 36d *: °[Double], colors: Seq[Color] = ...)(implicit evidence$1: Plottable[Y]) extends Product with Serializable

  4. class BarChartComponent[S, Y, D] extends JPanel with Fed[D]

  5. case class BarChartGrouped[G, S, Y, D](initialValue: D, groupsFn: (D) ⇒ Traversable[G], slicesFn: (D) ⇒ Traversable[S], gs2y: (D, (G, S)) ⇒ Y, gLabeller: (G) ⇒ String = (g: G) => g.toString, sLabeller: (S) ⇒ String = (s: S) => s.toString, drawKey: Boolean = true, width: Int = 700, height: Int = 600, border: Int = 50, barWidthPercent: Double = 0.80, keyLeftPadding: Int = 20, keyTopPadding: Int = 50, keyWidth: Int = 80, title: Option[String] = None, normalFontName: String = "Courier New", normalFontSize: Int = 12, titleFontName: String = "Palatino", titleFontSize: Int = 20, xAxis: Y, xAxisLabel: Option[String] = None, yAxisLabel: Option[String] = None, colors: Seq[Color] = ...)(implicit evidence$1: Plottable[Y]) extends Product with Serializable

  6. class BarChartGroupedComponent[G, S, Y, D] extends JPanel with Fed[D]

  7. class BarChartGroupedView[G, S, Y, D] extends AnyRef

  8. class BarChartView[S, Y, D] extends AnyRef

  9. trait BayesianNetworkVisualizationModule extends BayesianNetworkModule

  10. case class DataFeedActor[T](initialValue: T, refreshFn: (T) ⇒ T, interval: UnittedQuantity[Time, Double]) extends Actor with ActorLogging with Product with Serializable

  11. trait Fed[T] extends AnyRef

  12. class FrameRepaintingActor extends Actor with ActorLogging

  13. class JungDirectedGraphVisualization extends AnyRef

  14. class JungUndirectedGraphVisualization extends AnyRef

  15. trait KMeansVisualizationModule extends KMeansModule

  16. trait Paintable extends AnyRef

  17. case class Plot[X, Y, D](initialValue: List[(String, D)], orderedXs: (D) ⇒ Traversable[X], x2y: (D, X) ⇒ Y, connect: Boolean = true, drawKey: Boolean = true, width: Int = 700, height: Int = 600, border: Int = 50, pointDiameter: Int = 4, keyLeftPadding: Int = 20, keyTopPadding: Int = 50, keyWidth: Int = 80, fontName: String = "Courier New", fontSize: Int = 12, titleFontName: String = "Palatino", titleFontSize: Int = 20, colors: Seq[Color] = ..., title: Option[String] = None, xAxis: Option[Y] = None, xAxisLabel: Option[String] = None, yAxis: Option[X] = None, yAxisLabel: Option[String] = None)(implicit evidence$1: Plottable[X], evidence$2: Plottable[Y]) extends Product with Serializable

  18. class PlotComponent[X, Y, D] extends JPanel with Fed[List[(String, D)]]

  19. class PlotView[X, Y, D] extends AnyRef

  20. case class Point2D[X, Y](x: X, y: Y) extends Product with Serializable

  21. case class ScaledArea2D[X, Y](width: Int, height: Int, pad: Int, minX: X, maxX: X, minY: Y, maxY: Y)(implicit evidence$1: Plottable[X], evidence$2: Eq[X], evidence$3: Plottable[Y], evidence$4: Eq[Y]) extends Product with Serializable

Value Members

  1. object DataFeedProtocol

  2. object FrameProtocol

  3. def bmp(component: Component, filename: String): Unit

  4. def component2file(component: Component, filename: String, encoding: String): Unit

    component2file

    component2file

    encoding: PNG, JPEG, gif, BMP

    http://stackoverflow.com/questions/4028898/create-an-image-from-a-non-visible-awt-component

  5. package element

  6. implicit def enComponentBarChart[S, Y, D](barChart: BarChart[S, Y, D])(implicit arg0: Plottable[Y], arg1: Eq[Y], arg2: ClassTag[D]): BarChartComponent[S, Y, D]

  7. implicit def enComponentBarChartGrouped[G, S, Y, D](barChart: BarChartGrouped[G, S, Y, D])(implicit arg0: Plottable[Y], arg1: Eq[Y], arg2: ClassTag[D]): BarChartGroupedComponent[G, S, Y, D]

  8. implicit def enComponentDirectedGraph[VP, EP](dg: DirectedGraph[VP, EP])(implicit arg0: Manifest[VP], arg1: Eq[VP], arg2: Eq[EP]): Component

  9. implicit def enComponentPlot[X, Y, D](plot: Plot[X, Y, D])(implicit arg0: Plottable[X], arg1: Eq[X], arg2: Plottable[Y], arg3: Eq[Y]): PlotComponent[X, Y, D]

  10. implicit def enComponentUndirectedGraph[VP, EP](ug: UndirectedGraph[VP, EP])(implicit arg0: Manifest[VP], arg1: Eq[VP], arg2: Eq[EP]): Component

  11. def gif(component: Component, filename: String): Unit

  12. package gl

  13. def jpeg(component: Component, filename: String): Unit

  14. def newFrame(width: Int, height: Int): AxleFrame

  15. def play[T](component: Component with Fed[T], refreshFn: (T) ⇒ T, interval: UnittedQuantity[Time, Double])(implicit system: ActorSystem): ActorRef

  16. def png(component: Component, filename: String): Unit

  17. def show(component: Component): Unit

Inherited from AnyRef

Inherited from Any

Ungrouped