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.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Plot
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class GridData(grid: PlotGrid, bounds: Bounds) extends Product with Serializable

    Combines a plot grid with fractional bounds for rendering.

  2. case class TextData(text: PlotText, bounds: Bounds) extends Product with Serializable

    Combines textual information with a fractional bounds for rendering.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. 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.

  6. 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.

  7. 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.

  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. 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.

  13. 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.

  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. 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.

  16. 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.

  17. 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.

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. 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.

  23. 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.

  24. 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.

  25. 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.

  26. 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.

  27. 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.

  28. 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.

  29. 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.

  30. 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.

  31. 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.

  32. 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.

  33. 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.

  34. 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.

  35. 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.

  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. 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.

  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped