Class QQPlot

java.lang.Object
tech.tablesaw.plotly.api.QQPlot

public class QQPlot extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static Figure
    create(String title, String xTitle, double[] xData, String yTitle, double[] yData)
    Returns a figure containing a QQ Plot describing the differences between the distribution of values in the columns of interest
    static Figure
    create(String title, tech.tablesaw.api.Table table, String columnName1, String columnName2)
    Returns a figure containing a QQ Plot describing the differences between the distribution of values in the columns of interest

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • QQPlot

      public QQPlot()
  • Method Details

    • create

      public static Figure create(String title, tech.tablesaw.api.Table table, String columnName1, String columnName2)
      Returns a figure containing a QQ Plot describing the differences between the distribution of values in the columns of interest
      Parameters:
      title - A title for the plot
      table - The table containing the columns of interest
      columnName1 - The name of the first numeric column containing the data to plot
      columnName2 - The name of the second numeric column containing the data to plot
      Returns:
      A quantile plot
    • create

      public static Figure create(String title, String xTitle, double[] xData, String yTitle, double[] yData)
      Returns a figure containing a QQ Plot describing the differences between the distribution of values in the columns of interest
      Parameters:
      title - A title for the plot
      xTitle - The name of the first numeric column containing the data to plot
      xData - The data to plot on the x Axis
      yTitle - The name of the second numeric column containing the data to plot
      yData - The data to plot on the y Axis
      Returns:
      A quantile plot