public final class Bubble extends Object
| Modifier and Type | Method and Description |
|---|---|
static void |
show(double[] x,
double[] y,
double[] data)
Shows a bubble plot with the title "Bubbleplot" and data from the parameter.
|
static void |
show(NumericColumn x,
NumericColumn y,
NumericColumn data)
Shows a bubble plot where the chart title will be "Bubbleplot" and titles
for x and y axis will be taken from the columns.
|
static void |
show(String chartTitle,
double[] x,
double[] y,
double[] data)
Shows a bubble plot with the give title and data from the parameter.
|
static void |
show(String chartTitle,
double[] x,
String xAxis,
double[] y,
String yAxis,
double[] data)
Shows a bubble plot with the give title and data from the parameter.
|
static void |
show(String chartTitle,
NumericColumn x,
NumericColumn y,
NumericColumn data)
Shows a bubble plot with the chart title.
|
static void |
show(String chartTitle,
NumericColumn x,
String xAxis,
NumericColumn y,
String yAxis,
NumericColumn data)
Shows a bubble plot with the chart title.
|
public static void show(NumericColumn x, NumericColumn y, NumericColumn data)
x - column for the x axisy - column for the y axisdata - column for the bubblespublic static void show(String chartTitle, NumericColumn x, NumericColumn y, NumericColumn data)
chartTitle - title for the chartx - column for the x axisy - column for the y axisdata - column for the bubblespublic static void show(String chartTitle, NumericColumn x, String xAxis, NumericColumn y, String yAxis, NumericColumn data)
chartTitle - title for the chartx - column for the x axisxAxis - title for x axisy - column for the xy axisyAxis - title for y axisdata - column for the bubblespublic static void show(double[] x,
double[] y,
double[] data)
x - values for the x axisy - values for the y axisdata - values for the bubblespublic static void show(String chartTitle, double[] x, double[] y, double[] data)
chartTitle - title for the chartx - values for the x axisy - values for the y axisdata - values for the bubblespublic static void show(String chartTitle, double[] x, String xAxis, double[] y, String yAxis, double[] data)
chartTitle - title for the chartx - values for the x axisxAxis - y - values for the y axisyAxis - data - values for the bubblesCopyright © 2017. All rights reserved.