package plotting
Helpful constants and implicit conversions.
- Alphabetic
- By Inheritance
- plotting
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- implicit class ArrayIntToDoubleSeries extends PlotDoubleSeries
- implicit class ArrayLongToDoubleSeries extends PlotDoubleSeries
- implicit class ArrayToDoubleSeries extends PlotDoubleSeries
- implicit class ArrayToIntSeries extends PlotIntSeries
- implicit class ArrayToStringSeries extends PlotStringSeries
-
sealed
trait
Axis extends AnyRef
Abstract supertype for axes.
-
case class
Bounds(x: Double, y: Double, width: Double, height: Double) extends Product with Serializable
This class is used to represent rectangular bounds.
This class is used to represent rectangular bounds. In some cases it is full pixel size bounds for rending. In many cases it is used with values between 0.0 and 1.0 to represent a fractional bounds.
-
case class
CategoryAxis(key: String, tickStyle: Axis.TickStyle.Value, labelOrientation: Double, labelFont: FontData, name: Option[NameSettings], displaySide: Axis.DisplaySide.Value) extends Axis with Product with Serializable
Axis with text categories for labels instead of numeric values.
-
class
ColorGradient extends (Double) ⇒ Int
This class defines a color gradient that can be used for plotting colors that vary with a value.
This class defines a color gradient that can be used for plotting colors that vary with a value. The ColorGradient is a function of Double => Int that takes the value and gives back the appropriate color. It also can be applied to a PlotDoubleSeries and it will give back a PlotIntSeries.
When you are working with Scala collections, you can use values.map(cg) to get the colors associated with the values for the data point. The second form is most useful when working with Spark. You can instead do cg('col) as the Spark Column will be implicitly converted to a PlotIntSeries and the gradient will be applied to the values.
- implicit class DoubleFuncToDoubleSeries extends PlotDoubleSeries
- implicit class DoubleToDoubleSeries extends PlotDoubleSeries
- implicit class IntFuncToIntSeries extends PlotIntSeries
- implicit class IntToIntSeries extends PlotIntSeries
- case class LegendItem(text: String, color: Int = 0, gradient: ColorGradient = ColorGradient((-1, -1)), sizedPoints: Seq[(Int, Int)] = Seq.empty, symbol: PlotSymbol = NoSymbol) extends Product with Serializable
-
case class
NumericAxis(key: String, min: Option[Double] = None, max: Option[Double] = None, tickSpacing: Option[Double] = None, tickStyle: Axis.TickStyle.Value = Axis.TickStyle.Both, tickLabelInfo: Option[LabelSettings] = None, name: Option[NameSettings] = None, displaySide: Axis.DisplaySide.Value = Axis.DisplaySide.Min, style: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear) extends Axis with Product with Serializable
An axis type that displays a numeric scaling.
An axis type that displays a numeric scaling. The values are auto-scaled when values for the minimum or maximum aren't provided. If no tick spacing is provided, it will pick a "nice" spacing that gives 5-6 ticks in the range displayed. Axes can be set to display on the minimum or maximum side of a plot, and they can be linear or logarithmic. Note that when you use a logarithmic scale, the tickSpacing will be ignored, even if it is provided.
-
case class
Plot(texts: Map[String, TextData] = Map.empty, grids: Map[String, GridData] = Map.empty, legends: Seq[PlotLegend] = Seq.empty) extends Product with Serializable
This class represents the full concept of a plot in SwiftVis2.
This class represents the full concept of a plot in SwiftVis2. It contains maps of the various types of elements that can go into plots with unique identifying names.
Note that both PlotTextData and PlotGridData include Bounds for where the elements should appear. This allows the user to place multiple plots with separate axes or multiple labels. Text is drawn after all plot grids so it will appear on top of them.
-
case class
Plot2D(style: PlotStyle, xAxisName: String, yAxisName: String) extends Product with Serializable
Class that contains the elements needed to plot one data style with axes.
- trait PlotDoubleSeries extends PlotSeries with (Int) ⇒ Double
-
case class
PlotGrid(plots: Seq[Seq[Seq[Plot2D]]], axes: Map[String, Axis], xWeights: Seq[Double], yWeights: Seq[Double], axisFrac: Double = 0.15) extends Plottable with Product with Serializable
This is the primary plotting element in SwiftVis2.
This is the primary plotting element in SwiftVis2. It represents a grid of plots with axes that can surround the edges. Each region in the PlotGrid can hold multiple plots so the data for the plots is given by a Seq[Seq[Seq[Plot2D]]]. The first index is for the row, the second is the column, and the third is a stack of plots drawn at that location. The axes associated with plots are in the Plot2D type by name, which should match up with the Map[String, Axis] passed into this.
Each row and column can be a different size. The sizes are determined by the xWeights and yWeights arguments. Larger values get more space. The amount of space given to each row/column is determined by its contribution to the sum of the weights. If all the weights are the same, the rows/columns will be uniform in size.
The axisFrac argument tells what fraction of the plotting region should be given to the axes. The actual space given to the axes is this fraction times the smaller value of the width or height. Font sizes for axis labels are adjusted to fit whatever size is given here.
- trait PlotIntSeries extends PlotSeries with (Int) ⇒ Int
- case class PlotLegend(bounds: Bounds, colorNames: Map[Int, String] = Map.empty, gradientNames: Map[ColorGradient, String] = Map.empty, sizingName: (String, Seq[(Int, Int)]) = ("", Seq.empty), symbolNames: Map[PlotSymbol, String] = Map.empty) extends Product with Serializable with Plottable
- trait PlotSeries extends (Int) ⇒ Any
- trait PlotStringSeries extends PlotSeries with (Int) ⇒ String
- sealed trait PlotSymbol extends AnyRef
- case class PlotText(text: String, color: Int = BlackARGB, font: FontData = ..., align: renderer.Renderer.HorizontalAlign.Value = Renderer.HorizontalAlign.Center, angle: Double = 0.0) extends Plottable with Product with Serializable
- trait Plottable extends AnyRef
- implicit class SeqIntToDoubleSeries extends PlotDoubleSeries
- implicit class SeqToDoubleSeries extends PlotDoubleSeries
- implicit class SeqToIntSeries extends PlotIntSeries
- implicit class SeqToStringSeries extends PlotStringSeries
Value Members
- val BlackARGB: Int
- val BlueARGB: Int
- val CyanARGB: Int
- val GreenARGB: Int
- val MagentaARGB: Int
- val RedARGB: Int
- val WhiteARGB: Int
- val YellowARGB: Int
- def argb(a: Double, r: Double, g: Double, b: Double): Int
-
object
Axis
Types, enumerations, and classes used for the axes.
Types, enumerations, and classes used for the axes. Also contains code shared by the different types of axes.
- object ColorGradient
- object Ellipse extends PlotSymbol with Product with Serializable
- object EllipseLine extends PlotSymbol with Product with Serializable
- object NoSymbol extends PlotSymbol with Product with Serializable
-
object
Plot extends Serializable
This contains helper methods that will set up simple 1x1 plot grids with various plot types.
This contains helper methods that will set up simple 1x1 plot grids with various plot types. Make sure that you import swiftvis2.plotting to get implicit conversions. These implicit conversions allow you to pass Scala sequences, arrays, or plain literals in places where the functions require some type of PlotSeries. Importing swiftvis2.plotting._ also brings is color ARGB declarations.
-
object
PlotGrid extends Serializable
Contains helper methods for building different types of grids with default properties.
- object PlotLegend extends Serializable
- object PlotSymbol
- object Rectangle extends PlotSymbol with Product with Serializable
- object RectangleLine extends PlotSymbol with Product with Serializable
- object Star extends PlotSymbol with Product with Serializable
- object Triangle extends PlotSymbol with Product with Serializable
- object UnboundDoubleSeries extends PlotDoubleSeries
- object UnboundIntSeries extends PlotIntSeries
- object UnboundStringSeries extends PlotStringSeries