object Plot extends Serializable
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.
- Alphabetic
- By Inheritance
- Plot
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
case class
GridData(grid: PlotGrid, bounds: Bounds) extends Product with Serializable
Combines a plot grid with fractional bounds for rendering.
-
case class
TextData(text: PlotText, bounds: Bounds) extends Product with Serializable
Combines textual information with a fractional bounds for rendering.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
barPlot(categories: PlotStringSeries, valsAndColors: Seq[DataAndColor], stacked: Boolean = false, fracWidth: Double = 0.8, title: String = "", xLabel: String = "", yLabel: String = ""): Plot
Make a bar plot with the specified categories using the provides values and colors.
Make a bar plot with the specified categories using the provides values and colors. The number of elements in the sequences of the first element of the tuples for valsAndColors should match the number of elements in the categories sequence.
- categories
The names for the different categories.
- valsAndColors
A sequence that includes the values for the bars and the colors to use to draw them.
- stacked
Tells if the bars should be stacked instead of side-by-side.
- fracWidth
Gives the fraction of the with on the category axis that the bars should take up.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
barPlotMap(data: Map[String, Double], color: Int = 0xffff0000, stacked: Boolean = false, fracWidth: Double = 0.8, title: String = "", xLabel: String = "", yLabel: String = ""): Plot
Make a simple bar plot with one set of bars where values are associated with categories in a Map.
Make a simple bar plot with one set of bars where values are associated with categories in a Map.
- data
The names for the different categories along with their associated values.
- color
The color to draw the bars.
- stacked
Tells if the bars should be stacked instead of side-by-side.
- fracWidth
Gives the fraction of the with on the category axis that the bars should take up.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
boxPlot(categories: Array[String], plotData: Array[PlotDoubleSeries], boxWidthFrac: Double = 0.8, symbol: PlotSymbol = EllipseLine, symbolSize: Double = 7.5, color: Int = BlackARGB, title: String = "", xLabel: String = "", yLabel: String = ""): Plot
Makes a box plot using the specified categories and corresponding data values.
Makes a box plot using the specified categories and corresponding data values.
- categories
The names for the different categories.
- plotData
A sequence of the series of data whose distributions should be displayed.
- boxWidthFrac
The fraction of the category space in the x-axis that each box will take.
- symbol
The type of symbol to use for the outliers.
- symbolSize
The size of symbol to draw for the outliers.
- color
The color to draw the box plot with.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
gridCN(styles: Seq[Seq[CategoryNumberPlotStyle]], title: String = "", xLabel: String = "", yLabel: String = "", yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
This makes an MxN grid of scatter plots that all share the same axes.
This makes an MxN grid of scatter plots that all share the same axes.
- styles
A 2D grid of plot styles.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- yType
The type of the y-axis if it is numeric.
-
def
gridNN(styles: Seq[Seq[NumberNumberPlotStyle]], title: String = "", xLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
This makes an MxN grid of numeric axis plots that all share the same axes.
This makes an MxN grid of numeric axis plots that all share the same axes.
- styles
A 2D grid of plot styles.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- xType
The type of the x-axis if it is numeric.
- yType
The type of the y-axis if it is numeric.
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
histogramGrid(bins: PlotDoubleSeries, valsAndColors: Seq[Seq[DataAndColor]], centerOnBins: Boolean, sharedYAxis: Boolean, title: String = "", xLabel: String = "", yLabel: String = "", binsOnX: Boolean = true): Plot
Make a grid of histograms.
Make a grid of histograms. If not centered on bins, the bins series should be one element longer than the values. All histograms share the same bins and the same x axis. You can determine if they share the Y axis or if each row gets its own.
- bins
A series of values that represent either the centers of bins or the edges of bins.
- valsAndColors
A 2D structure of the values for each of the bins and their associated colors.
- centerOnBins
Tells if the bins values are a bin centers or if the define the edges of bins.
- sharedYAxis
Tells if each row in the grid should use the same Y axis.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
histogramPlot(bins: PlotDoubleSeries, vals: PlotDoubleSeries, color: Int, centerOnBins: Boolean, title: String = "", xLabel: String = "", yLabel: String = "", binsOnX: Boolean = true): Plot
Make a simple histogram.
Make a simple histogram. If not centered on bins, the bins series should be one element longer than the values.
- bins
A series of values that represent either the centers of bins or the edges of bins.
- vals
The values for each of the bins. Note that this isn't the data, but the counts in each bin.
- color
The color to draw the histogram boxes in.
- centerOnBins
Tells if the bins values are a bin centers or if the define the edges of bins.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
histogramPlotFromData(bins: PlotDoubleSeries, data: PlotDoubleSeries, color: Int, title: String = "", xLabel: String = "", yLabel: String = "", binsOnX: Boolean = true): Plot
Make a simple histogram.
Make a simple histogram. If not centered on bins, the bins series should be one element longer than the values.
- bins
A series of values that represent either the centers of bins or the edges of bins.
- data
The data that we are binning to make the Histogram.
- color
The color to draw the histogram boxes in.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
row(styles: Seq[PlotStyle], title: String = "", xNumLabel: String = "", xCatLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
This will create a row of styles with a mix of numeric axes and categorical axes.
This will create a row of styles with a mix of numeric axes and categorical axes.
- styles
The sequence of plot styles that you want along the row.
- title
The title put on the plot.
- xNumLabel
The label drawn on the x-axis of numbered axes.
- xCatLabel
The label drawn on the x-axis of categorical axes.
- yLabel
The label drawn on the y-axis.
- xType
The type of the x-axis if it is numeric. This argument isn't used for a categorical x-axis.
- yType
The type of the y-axis if it is numeric.
-
def
scatterPlot(x: PlotDoubleSeries, y: PlotDoubleSeries, title: String = "", xLabel: String = "", yLabel: String = "", symbolSize: PlotDoubleSeries = 10, symbolColor: PlotIntSeries = BlackARGB, xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, xSizing: PlotSymbol.Sizing.Value = PlotSymbol.Sizing.Pixels, ySizing: PlotSymbol.Sizing.Value = PlotSymbol.Sizing.Pixels): Plot
Make a basic scatter plot with a single set of data.
Make a basic scatter plot with a single set of data. The different series are treated as parallel arrays. So the ith index in each one matches up. Implicit conversions will allow you to use constants for values such as size and color. You should not use constants for the x and y values.
- x
The x values of the data points.
- y
The y values of the data points.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- symbolSize
The values to use for the sizes of the symbols.
- symbolColor
The value to use for the colors of the symbols.
- xSizing
The style of sizing for the symbols in the x direction.
- ySizing
The style of sizing for the symbols in the y direction.
-
def
scatterPlotGrid(pdata: Seq[Seq[(PlotDoubleSeries, PlotDoubleSeries, PlotIntSeries, PlotDoubleSeries)]], title: String = "", xLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
This makes an MxN grid of scatter plots that all share the same axes.
This makes an MxN grid of scatter plots that all share the same axes.
- pdata
A 2D grid (sequence of sequence) with information about the different scatter plots. The values in the tuple are x, y, color, and size for each point.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
scatterPlotGridFull(pdata: Seq[Seq[(PlotDoubleSeries, PlotDoubleSeries, PlotIntSeries, PlotDoubleSeries, Option[LineData], Option[PlotDoubleSeries], Option[PlotDoubleSeries])]], title: String = "", xLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
This makes an MxN grid of scatter plots that all share the same axes.
This makes an MxN grid of scatter plots that all share the same axes.
- pdata
A 2D grid (sequence of sequence) with information about the different scatter plots. The values in the tuple are x, y, color, size, line value, x-error, and y-error for each point.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
scatterPlotWithErrorBars(x: PlotDoubleSeries, y: PlotDoubleSeries, title: String = "", xLabel: String = "", yLabel: String = "", symbolSize: PlotDoubleSeries = 10, symbolColor: PlotIntSeries = BlackARGB, xError: PlotDoubleSeries, yError: PlotDoubleSeries, xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
Makes a scatter plot where each point has error bars associated with it.
Makes a scatter plot where each point has error bars associated with it.
- x
The x values of the data points.
- y
The y values of the data points.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- symbolSize
The values to use for the sizes of the symbols.
- symbolColor
The value to use for the colors of the symbols.
- xError
The size of the error bars in the x direction.
- yError
The size of the error bars in the y direction.
-
def
scatterPlotWithLines(x: PlotDoubleSeries, y: PlotDoubleSeries, title: String = "", xLabel: String = "", yLabel: String = "", symbolSize: PlotDoubleSeries = 10, symbolColor: PlotIntSeries = BlackARGB, lineGrouping: PlotSeries = 0, lineStyle: StrokeData = Renderer.StrokeData(1, Nil), xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
This makes a scatter plot where certain points are connected by lines.
This makes a scatter plot where certain points are connected by lines. If you pass a constant for the line grouping, all the points will be connected. If you pass a Int => Double or a Seq[Double], then dots whose indices in x and y evaluated to the same value will be connected.
- x
The x values of the data points.
- y
The y values of the data points.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- symbolSize
The values to use for the sizes of the symbols.
- symbolColor
The value to use for the colors of the symbols.
- lineGrouping
This series tells what subsets to connect the values to.
- lineStyle
The style of lines to connect the points with.
-
def
scatterPlots(pdata: Seq[(PlotDoubleSeries, PlotDoubleSeries, PlotIntSeries, PlotDoubleSeries)], title: String = "", xLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
Make a 1x1 grid with with multiple scatter plots that all share the same x and y axis.
Make a 1x1 grid with with multiple scatter plots that all share the same x and y axis.
- pdata
A sequence with information about the different scatter plots. The values in the tuple are x, y, color, and size for each point.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
scatterPlotsFull(pdata: Seq[(PlotDoubleSeries, PlotDoubleSeries, PlotIntSeries, PlotDoubleSeries, Option[LineData], Option[PlotDoubleSeries], Option[PlotDoubleSeries])], title: String = "", xLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
Make a 1x1 grid with with multiple scatter plots that all share the same x and y axis with the ability to add connecting lines and error bars.
Make a 1x1 grid with with multiple scatter plots that all share the same x and y axis with the ability to add connecting lines and error bars. If you want to plot multiple lines for separate sets of data, this is likely the easiest approach.
- pdata
A sequence with information about the different scatter plots. The values in the tuple are x, y, color, size, line value, x-error, and y-error for each point.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
simple(style: PlotStyle, title: String = "", xLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
Plots a single style in a 1x1 grid.
Plots a single style in a 1x1 grid.
- style
The plot styles to stack on a 1x1 grid.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- xType
The type of the x-axis if it is numeric. This argument isn't used for a categorical x-axis.
- yType
The type of the y-axis if it is numeric. This argument isn't used for a categorical y-axis.
-
def
stacked(styles: Seq[PlotStyle], title: String = "", xLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
Make a 1x1 grid with with multiple plots that all share the same x and y axis with the ability to add connecting lines and error bars.
Make a 1x1 grid with with multiple plots that all share the same x and y axis with the ability to add connecting lines and error bars. If you want to plot multiple lines for separate sets of data, this is likely the easiest approach. Note that this requires all plots have the same axis types.
- styles
A sequence of the plot styles to stack on a 1x1 grid.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- xType
The type of the x-axis if it is numeric.
- yType
The type of the y-axis if it is numeric.
-
def
stackedCN(styles: Seq[CategoryNumberPlotStyle], title: String = "", xLabel: String = "", yLabel: String = "", yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
Make a 1x1 grid with with multiple scatter plots that all share the same x and y axis with the ability to add connecting lines and error bars.
Make a 1x1 grid with with multiple scatter plots that all share the same x and y axis with the ability to add connecting lines and error bars. If you want to plot multiple lines for separate sets of data, this is likely the easiest approach.
- styles
A sequence of the plot styles to stack on a 1x1 grid.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- yType
The type of the y-axis if it is numeric.
-
def
stackedGridNN(styles: Seq[Seq[Seq[NumberNumberPlotStyle]]], title: String = "", xLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
This makes an MxN grid of scatter plots that all share the same axes.
This makes an MxN grid of scatter plots that all share the same axes.
- styles
A 2D grid of plot styles.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- xType
The type of the x-axis if it is numeric. This argument isn't used for a categorical x-axis.
- yType
The type of the y-axis if it is numeric. This argument isn't used for a categorical y-axis.
-
def
stackedHistogramPlot(bins: Seq[Double], valsAndColors: Seq[DataAndColor], centerOnBins: Boolean, title: String = "", xLabel: String = "", yLabel: String = ""): Plot
Make a stacked histogram.
Make a stacked histogram. If not centered on bins, the bins series should be one element longer than the values.
- bins
A series of values that represent either the centers of bins or the edges of bins.
- valsAndColors
A sequence with the values and colors for each of the bins.
- centerOnBins
Tells if the bins values are a bin centers or if the define the edges of bins.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
def
stackedNN(styles: Seq[NumberNumberPlotStyle], title: String = "", xLabel: String = "", yLabel: String = "", xType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear, yType: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear): Plot
Make a 1x1 grid with with multiple numeric axes plots that all share the same x and y axis with the ability to add connecting lines and error bars.
Make a 1x1 grid with with multiple numeric axes plots that all share the same x and y axis with the ability to add connecting lines and error bars. If you want to plot multiple lines for separate sets of data, this is likely the easiest approach.
- styles
A sequence of the plot styles to stack on a 1x1 grid.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
- xType
The type of the x-axis if it is numeric.
- yType
The type of the y-axis if it is numeric.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
violinPlot(categories: Array[String], plotData: Array[PlotDoubleSeries], bandwidth: Option[Double] = None, widthFrac: Double = 0.8, color: Int = BlackARGB, title: String = "", xLabel: String = "", yLabel: String = ""): Plot
Makes a box plot using the specified categories and corresponding data values.
Makes a box plot using the specified categories and corresponding data values.
- categories
The names for the different categories.
- plotData
A sequence of the series of data whose distributions should be displayed.
- bandwidth
An optional bandwidth for the kernel that is used to approximate the distribution. This is primarily needed if the distribution isn't close to normal.
- widthFrac
The fraction of the category space in the x-axis that each box will take.
- color
The color to draw the box plot with.
- title
The title put on the plot.
- xLabel
The label drawn on the x-axis.
- yLabel
The label drawn on the y-axis.
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )