Uses of Class
tech.tablesaw.plotly.components.Figure
Packages that use Figure
-
Uses of Figure in tech.tablesaw.plotly
Methods in tech.tablesaw.plotly with parameters of type Figure -
Uses of Figure in tech.tablesaw.plotly.api
Methods in tech.tablesaw.plotly.api that return FigureModifier and TypeMethodDescriptionstatic Figurestatic FigureAreaPlot.create(String title, tech.tablesaw.api.Table table, String xCol, String yCol, String groupCol) static FigureBoxPlot.create(String title, tech.tablesaw.api.Table table, String groupingColumn, String numericColumn) static Figurestatic FigureBubblePlot.create(String title, tech.tablesaw.api.Table table, String xCol, String yCol, String sizeCol) create a bubble plot using column namesstatic FigureBubblePlot.create(String title, tech.tablesaw.api.Table table, String xCol, String yCol, String sizeColumn, String groupCol) static FigureBubblePlot.create(String title, tech.tablesaw.columns.Column<?> xColumn, tech.tablesaw.columns.Column<?> yColumn, tech.tablesaw.api.NumericColumn<?> sizeColumn, double[] color, Marker.SizeMode sizeMode, Double opacity) create a bubble plot using more options including color/sizeMode/opacitystatic FigureCandlestickPlot.create(String title, tech.tablesaw.api.Table table, String xCol, String openCol, String highCol, String lowCol, String closeCol) Returns Figure containing candlestick time series plot with a default layoutstatic FigureContourPlot.create(String title, tech.tablesaw.api.Table table, String categoryCol1, String categoryCol2) static FigureHeatmap.create(String title, tech.tablesaw.api.Table table, String categoryCol1, String categoryCol2) static Figurestatic Figurestatic Figurestatic Figurestatic FigureHorizontalBarPlot.create(String title, tech.tablesaw.api.Table table, String groupColName, String numberColName) static FigureHorizontalBarPlot.create(String title, tech.tablesaw.api.Table table, String groupColName, Layout.BarMode barMode, String... numberColNames) static Figurestatic Figurestatic FigureLinePlot.create(String title, tech.tablesaw.api.Table table, String xCol, String yCol, String groupCol) static FigureOHLCPlot.create(String title, tech.tablesaw.api.Table table, String xCol, String openCol, String highCol, String lowCol, String closeCol) Returns Figure containing Open-High-Low-Close time series plot with a default layoutstatic FigureParetoPlot.create(String title, tech.tablesaw.api.Table table, String groupColName, String numberColName) static FigurePiePlot.create(String title, tech.tablesaw.api.Table table, String groupColName, String numberColName) static FigurePricePlot.create(String title, tech.tablesaw.api.Table table, String xCol, String openCol, String highCol, String lowCol, String closeCol, String plotType) static FigureReturns a figure containing a QQ Plot describing the differences between the distribution of values in the columns of intereststatic FigureReturns a figure containing a QQ Plot describing the differences between the distribution of values in the columns of intereststatic FigureReturns a figure containing a Quantile Plot describing the distribution of values in the column of intereststatic FigureScatter3DPlot.create(String title, tech.tablesaw.api.Table table, String xCol, String yCol, String zCol) static FigureScatter3DPlot.create(String title, tech.tablesaw.api.Table table, String xCol, String yCol, String zCol, String groupCol) static FigureScatter3DPlot.create(String title, tech.tablesaw.api.Table table, String xCol, String yCol, String zCol, String sizeColumn, String groupCol) static Figurestatic Figurestatic FigureScatterPlot.create(String title, tech.tablesaw.api.Table table, String xCol, String yCol, String groupCol) static FigureTimeSeriesPlot.create(String title, String xTitle, tech.tablesaw.api.DateColumn xCol, String yTitle, tech.tablesaw.api.NumericColumn<?> yCol) static FigureTimeSeriesPlot.create(String title, String xTitle, tech.tablesaw.api.DateTimeColumn xCol, String yTitle, tech.tablesaw.api.NumericColumn<?> yCol) static FigureTimeSeriesPlot.create(String title, String xTitle, tech.tablesaw.api.InstantColumn xCol, String yTitle, tech.tablesaw.api.NumericColumn<?> yCol) static FigureTimeSeriesPlot.create(String title, tech.tablesaw.api.Table table, String dateColXName, String yColName) static FigureTimeSeriesPlot.create(String title, tech.tablesaw.api.Table table, String dateColX, String yCol, String groupCol) static FigureReturns a figure containing a QQ Plot describing the differences between the distribution of values in the columns of intereststatic FigureTukeyMeanDifferencePlot.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 intereststatic FigureVerticalBarPlot.create(String title, tech.tablesaw.api.Table table, String groupColName, String numberColName) static FigureVerticalBarPlot.create(String title, tech.tablesaw.api.Table table, String groupColName, Layout.BarMode barMode, String... numberColNames) static FigureViolinPlot.create(String title, tech.tablesaw.api.Table table, String groupingColumn, String numericColumn, boolean showBoxPlot, boolean showMeanLine) static FigureTimeSeriesPlot.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 DateColumnstatic FigureParetoPlot.createVertical(String title, tech.tablesaw.api.Table table, String groupColName, String numberColName) static FigureParetoPlot.showHorizontal(String title, tech.tablesaw.api.Table table, String groupColName, String numberColName) -
Uses of Figure in tech.tablesaw.plotly.components
Methods in tech.tablesaw.plotly.components that return FigureMethods in tech.tablesaw.plotly.components with parameters of type FigureModifier and TypeMethodDescriptionstatic Page.PageBuilderPage.pageBuilder(Figure figure, String divName) Constructors in tech.tablesaw.plotly.components with parameters of type Figure