Package tech.tablesaw.plotly.api
Class QQPlot
- java.lang.Object
-
- tech.tablesaw.plotly.api.QQPlot
-
public class QQPlot extends Object
-
-
Constructor Summary
Constructors Constructor Description QQPlot()
-
Method Summary
All Methods Static Methods Concrete Methods 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 intereststatic 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
-
-
-
Method Detail
-
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 plottable
- The table containing the columns of interestcolumnName1
- The name of the first numeric column containing the data to plotcolumnName2
- 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 plotxTitle
- The name of the first numeric column containing the data to plotxData
- The data to plot on the x AxisyTitle
- The name of the second numeric column containing the data to plotyData
- The data to plot on the y Axis- Returns:
- A quantile plot
-
-