Packages

package styles

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class BarStyle(categories: PlotStringSeries, valSourceColor: Seq[DataAndColor], stacked: Boolean = false, barWidthFrac: Double = 0.8) extends CategoryNumberPlotStyle with Product with Serializable
  2. final case class BoxPlotData(category: String, min: Double, firstQuartile: Double, median: Double, thirdQuartile: Double, max: Double, outliers: IndexedSeq[Double]) extends Product with Serializable

    This holds the data for rendering a box for a single category.

  3. final case class BoxPlotStyle(boxData: Seq[BoxPlotData], boxWidthFrac: Double, symbol: PlotSymbol, symbolSize: Double, color: Int, stroke: StrokeData) extends CategoryNumberPlotStyle with Product with Serializable

    This is the style for drawing a box plot.

  4. trait CategoryCategoryPlotStyle extends PlotStyle
  5. trait CategoryNumberPlotStyle extends PlotStyle
  6. case class ColoredSurfaceStyle(xSource: PlotDoubleSeries, ySource: PlotDoubleSeries, group: PlotSeries, colors: PlotIntSeries) extends NumberNumberPlotStyle with Product with Serializable
  7. sealed trait DensityTreeNode extends AnyRef
  8. final case class HistogramStyle(binValues: PlotDoubleSeries, valSourceColor: Seq[DataAndColor], centerOnBins: Boolean = false, binsOnX: Boolean = true) extends NumberNumberPlotStyle with Product with Serializable

    This style will draw out a histogram.

  9. final case class InternalDTN(min: Double, max: Double, mean: Double, cnt: Int, left: DensityTreeNode, right: DensityTreeNode) extends DensityTreeNode with Product with Serializable
  10. final case class LeafDTN(values: IndexedSeq[Double], mean: Double) extends DensityTreeNode with Product with Serializable
  11. trait NumberNumberPlotStyle extends PlotStyle
  12. trait PlotStyle extends AnyRef

    This is the trait to be implemented by the various different styles of plots.

  13. final case class ScatterStyle(xSource: PlotDoubleSeries, ySource: PlotDoubleSeries, symbol: PlotSymbol = Ellipse, symbolWidth: PlotDoubleSeries = 10, symbolHeight: PlotDoubleSeries = 10, xSizing: PlotSymbol.Sizing.Value = PlotSymbol.Sizing.Pixels, ySizing: PlotSymbol.Sizing.Value = PlotSymbol.Sizing.Pixels, colors: PlotIntSeries = BlackARGB, lines: Option[LineData] = None, xErrorBars: Option[PlotDoubleSeries] = None, yErrorBars: Option[PlotDoubleSeries] = None) extends NumberNumberPlotStyle with Product with Serializable

    This class represents a highly functional scatter plot.

    This class represents a highly functional scatter plot. The points can use different symbols that are scaled/sized in different ways in both the X and Y direction. Each point can have a different color associated with it. They can also be connected with lines and have error bars on them.

  14. final case class ViolinPlotData(category: String, min: Double, firstQuartile: Double, median: Double, thirdQuartile: Double, max: Double, densities: IndexedSeq[(Double, Double)]) extends Product with Serializable

    This holds the data for rendering a box for a single category.

  15. final case class ViolinPlotStyle extends CategoryNumberPlotStyle with Product with Serializable

    A plot style of drawing violin plots.

  16. case class XYC(x: Double, y: Double, c: Int) extends Product with Serializable

Value Members

  1. object BarStyle extends Serializable
  2. object BoxPlotStyle extends Serializable
  3. object HistogramStyle extends Serializable
  4. object ScatterStyle extends Serializable
  5. object ViolinPlotStyle extends Serializable

Ungrouped