Package | Description |
---|---|
tech.tablesaw.plotly | |
tech.tablesaw.plotly.api | |
tech.tablesaw.plotly.components |
Modifier and Type | Method and Description |
---|---|
static void |
Plot.show(Figure figure) |
static void |
Plot.show(Figure figure,
File outputFile) |
static void |
Plot.show(Figure figure,
String divName) |
static void |
Plot.show(Figure figure,
String divName,
File outputFile) |
Modifier and Type | Method and Description |
---|---|
static Figure |
Histogram.create(String title,
double[] data) |
static Figure |
Histogram.create(String title,
tech.tablesaw.api.NumericColumn<?> data) |
static Figure |
TimeSeriesPlot.create(String title,
String xTitle,
tech.tablesaw.api.DateColumn xCol,
String yTitle,
tech.tablesaw.api.NumericColumn<?> yCol) |
static Figure |
TimeSeriesPlot.create(String title,
String xTitle,
tech.tablesaw.api.DateTimeColumn xCol,
String yTitle,
tech.tablesaw.api.NumericColumn<?> yCol) |
static Figure |
TukeyMeanDifferencePlot.create(String title,
String measure,
double[] xData,
double[] yData)
Returns a figure containing a QQ Plot describing the differences between the distribution of
values in the columns of interest
|
static Figure |
LinePlot.create(String title,
String xTitle,
double[] xCol,
String yTitle,
double[] yCol) |
static Figure |
QQPlot.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 |
BubblePlot.create(String title,
String xTitle,
double[] xCol,
String yTitle,
double[] yCol) |
static Figure |
ScatterPlot.create(String title,
String xTitle,
double[] xCol,
String yTitle,
double[] yCol) |
static Figure |
TukeyMeanDifferencePlot.create(String title,
String measure,
tech.tablesaw.api.Table table,
String columnName1,
String columnName2)
Returns a figure containing a Tukey Mean-Difference Plot describing the differences between the
data in two columns of interest
|
static Figure |
QuantilePlot.create(String title,
tech.tablesaw.api.Table table,
String columnName)
Returns a figure containing a Quantile Plot describing the distribution of values in the column
of interest
|
static Figure |
Histogram.create(String title,
tech.tablesaw.api.Table table,
String numericColumnName) |
static Figure |
HorizontalBarPlot.create(String title,
tech.tablesaw.api.Table table,
String groupColName,
Layout.BarMode barMode,
String... numberColNames) |
static Figure |
VerticalBarPlot.create(String title,
tech.tablesaw.api.Table table,
String groupColName,
Layout.BarMode barMode,
String... numberColNames) |
static Figure |
TimeSeriesPlot.create(String title,
tech.tablesaw.api.Table table,
String dateColXName,
String yColName) |
static Figure |
Heatmap.create(String title,
tech.tablesaw.api.Table table,
String categoryCol1,
String categoryCol2) |
static Figure |
HorizontalBarPlot.create(String title,
tech.tablesaw.api.Table table,
String groupColName,
String numberColName) |
static Figure |
PiePlot.create(String title,
tech.tablesaw.api.Table table,
String groupColName,
String numberColName) |
static Figure |
LinePlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol) |
static Figure |
VerticalBarPlot.create(String title,
tech.tablesaw.api.Table table,
String groupColName,
String numberColName) |
static Figure |
ParetoPlot.create(String title,
tech.tablesaw.api.Table table,
String groupColName,
String numberColName) |
static Figure |
AreaPlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol) |
static Figure |
BoxPlot.create(String title,
tech.tablesaw.api.Table table,
String groupingColumn,
String numericColumn) |
static Figure |
QQPlot.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
|
static Figure |
Histogram2D.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol) |
static Figure |
ScatterPlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol) |
static Figure |
Scatter3DPlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol,
String zCol) |
static Figure |
TimeSeriesPlot.create(String title,
tech.tablesaw.api.Table table,
String dateColX,
String yCol,
String groupCol) |
static Figure |
LinePlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol,
String groupCol) |
static Figure |
AreaPlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol,
String groupCol) |
static Figure |
BubblePlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol,
String sizeColumn) |
static Figure |
ScatterPlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol,
String groupCol) |
static Figure |
Scatter3DPlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol,
String zCol,
String groupCol) |
static Figure |
BubblePlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol,
String sizeColumn,
String groupCol) |
static Figure |
Scatter3DPlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String yCol,
String zCol,
String sizeColumn,
String groupCol) |
static Figure |
CandlestickPlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String openCol,
String highCol,
String lowCol,
String closeCol) |
static Figure |
OHLCPlot.create(String title,
tech.tablesaw.api.Table table,
String xCol,
String openCol,
String highCol,
String lowCol,
String closeCol) |
static Figure |
TimeSeriesPlot.createDateTimeSeries(String title,
tech.tablesaw.api.Table table,
String dateTimeColumnName,
String numberColumnName)
Creates a time series where the x values are from a DateTimeColumn, rather than a DateColumn
|
static Figure |
ParetoPlot.createVertical(String title,
tech.tablesaw.api.Table table,
String groupColName,
String numberColName) |
static Figure |
ParetoPlot.showHorizontal(String title,
tech.tablesaw.api.Table table,
String groupColName,
String numberColName) |
Modifier and Type | Method and Description |
---|---|
Figure |
Figure.FigureBuilder.build() |
Modifier and Type | Method and Description |
---|---|
static Page.PageBuilder |
Page.pageBuilder(Figure figure,
String divName) |
Constructor and Description |
---|
PageBuilder(Figure figure,
String divName) |
Copyright © 2019. All rights reserved.