|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DataTable | |
|---|---|
| com.rapidminer | The main packages of RapidMiner. |
| com.rapidminer.datatable | DataTables are the most important data container interface for RapidMiner which are used for all statistics and plotting purposes. |
| com.rapidminer.example | The data core classes of RapidMiner. |
| com.rapidminer.example.set | The available views (example sets) on the example tables. |
| com.rapidminer.gui.plotter | This package contains all plotters which are able to create plots from a given DataTable. |
| com.rapidminer.gui.plotter.charts | Some basic chart plotters. |
| com.rapidminer.gui.plotter.conditions | Contains plotter conditions which are used to prevent the usage of a plotter for DataTables which does not fulfill the corresponding condition. |
| com.rapidminer.gui.plotter.mathplot | This package contains DataTable plotter making use of the JMathPlot library. |
| com.rapidminer.gui.plotter.som | Classes for a SOM (Self Organizing Map aka Kohonen Net) plotter. |
| com.rapidminer.gui.renderer | This package consists the base classes for the renderers / visualization components of RapidMiner components and results. |
| com.rapidminer.gui.renderer.data | This package consists the base classes for the renderers / visualization components of RapidMiner data sets (example sets). |
| com.rapidminer.gui.renderer.models | This package consists the base classes for the renderers / visualization components of RapidMiner models. |
| com.rapidminer.gui.renderer.weights | This package consists the base classes for the renderers / visualization components of RapidMiner attribute weights. |
| com.rapidminer.gui.viewer | This package contain viewer classes for some standard data types like ExampleSets, DataTables etc. |
| com.rapidminer.operator.learner.functions.kernel | Learning schemes which make use of kernel functions to transform the feature space, e.g. support vector machines. |
| com.rapidminer.operator.visualization | The operators in this package are used for visualization purposes. |
| com.rapidminer.operator.visualization.dependencies | The operators in this package are used for the calculation and the visualization of dependency matrices like those for correlations etc. |
| Uses of DataTable in com.rapidminer |
|---|
| Methods in com.rapidminer that return DataTable | |
|---|---|
DataTable |
Process.getDataTable(java.lang.String name)
Returns the data table associated with the given name. |
| Methods in com.rapidminer that return types with arguments of type DataTable | |
|---|---|
java.util.Collection<DataTable> |
Process.getDataTables()
Returns all data tables. |
| Methods in com.rapidminer with parameters of type DataTable | |
|---|---|
void |
Process.addDataTable(DataTable table)
Adds the given data table. |
void |
LoggingListener.addDataTable(DataTable dataTable)
|
void |
LoggingListener.removeDataTable(DataTable dataTable)
|
| Uses of DataTable in com.rapidminer.datatable |
|---|
| Classes in com.rapidminer.datatable that implement DataTable | |
|---|---|
class |
AbstractDataTable
This abstract data table implementation provides some default implementations for data tables like listener handling. |
class |
DataTableExampleSetAdapter
This class can be used to use an example set as data table. |
class |
DataTableKernelModelAdapter
This class can be used to use a kernel model as data table. |
class |
DataTablePairwiseMatrixExtractionAdapter
This class can be used to use all pairs (entries) of a numerical matrix as data table. |
class |
DataTableSymmetricalMatrixAdapter
This class can be used to use a symmetrical matrix as data table. |
class |
SimpleDataTable
A simple data table implementation which stores the data itself. |
| Methods in com.rapidminer.datatable that return DataTable | |
|---|---|
DataTable |
SimpleDataTable.sample(int newSize)
|
DataTable |
DataTableSymmetricalMatrixAdapter.sample(int newSize)
Not implemented!!! |
DataTable |
DataTablePairwiseMatrixExtractionAdapter.sample(int newSize)
Not implemented!!! |
DataTable |
DataTableKernelModelAdapter.sample(int newSize)
|
DataTable |
DataTableExampleSetAdapter.sample(int newSize)
|
DataTable |
DataTable.sample(int newSize)
Performs a sampling of this data table. |
| Methods in com.rapidminer.datatable with parameters of type DataTable | |
|---|---|
static ExampleSet |
DataTableExampleSetAdapter.createExampleSetFromDataTable(DataTable table)
|
void |
GnuPlotDataTableHandler.dataTableUpdated(DataTable table)
|
void |
DataTableListener.dataTableUpdated(DataTable source)
|
| Constructors in com.rapidminer.datatable with parameters of type DataTable | |
|---|---|
GnuPlotDataTableHandler(DataTable table)
|
|
| Uses of DataTable in com.rapidminer.example |
|---|
| Methods in com.rapidminer.example that return DataTable | |
|---|---|
DataTable |
AttributeWeights.createDataTable()
|
| Uses of DataTable in com.rapidminer.example.set |
|---|
| Methods in com.rapidminer.example.set that return DataTable | |
|---|---|
DataTable |
AttributeWeightedExampleSet.createDataTable(IOContainer container)
|
DataTable |
AbstractExampleSet.createDataTable(IOContainer container)
This method is used to create a DataTable from this example set. |
| Uses of DataTable in com.rapidminer.gui.plotter |
|---|
| Fields in com.rapidminer.gui.plotter declared as DataTable | |
|---|---|
protected DataTable |
RadVizPlotter.dataTable
The currently used data table. |
protected DataTable |
ColorQuartilePlotter.dataTable
|
| Methods in com.rapidminer.gui.plotter with parameters of type DataTable | |
|---|---|
static Quartile |
Quartile.calculateQuartile(DataTable table,
int column)
|
void |
PlotterPanel.dataTableUpdated(DataTable source)
|
void |
PlotterAdapter.dataTableUpdated(DataTable source)
Invokes Component.repaint(). |
protected void |
PlotterAdapter.drawLegend(java.awt.Graphics graphics,
DataTable table,
int legendColumn)
This method can be used to draw a legend on the given graphics context. |
protected void |
PlotterAdapter.drawLegend(java.awt.Graphics graphics,
DataTable table,
int legendColumn,
int xOffset,
int alpha)
This method can be used to draw a legend on the given graphics context. |
void |
PlotterAdapter.drawSimpleDateLegend(java.awt.Graphics graphics,
int x,
int y,
DataTable table,
int legendColumn,
double min,
double max)
|
protected void |
PlotterAdapter.drawWeightRectangle(java.awt.Graphics2D newSpace,
DataTable dataTable,
int column,
double maxWeight,
int plotterSize)
|
protected double |
PlotterAdapter.getMaxWeight(DataTable dataTable)
|
protected int |
PlotterAdapter.getNumberOfPlots(DataTable table)
|
java.awt.Color |
ColorProvider.getPointBorderColor(DataTable table,
DataTableRow row,
int column)
|
double |
ColorProvider.getPointColorValue(DataTable table,
DataTableRow row,
int column,
double min,
double max)
Helper methods which can be used to deliver a value for the point color. |
protected double |
PlotterAdapter.getTicSize(DataTable dataTable,
int column,
double min,
double max)
|
void |
SurveyPlotter.setDataTable(DataTable dataTable)
|
void |
ScatterPlotter.setDataTable(DataTable dataTable)
|
void |
ScatterMatrixPlotter.setDataTable(DataTable dataTable)
|
void |
RadVizPlotter.setDataTable(DataTable dataTable)
|
void |
QuartilePlotter.setDataTable(DataTable dataTable)
|
void |
PlotterPanel.setDataTable(DataTable dataTable)
|
void |
PlotterAdapter.setDataTable(DataTable dataTable)
Does nothing. |
void |
Plotter.setDataTable(DataTable dataTable)
Sets the data table for this plotter. |
void |
ParallelPlotter.setDataTable(DataTable dataTable)
|
void |
HintonDiagram.setDataTable(DataTable dataTable)
|
void |
DensityPlotter.setDataTable(DataTable dataTable)
|
void |
ColorQuartilePlotter.setDataTable(DataTable dataTable)
|
void |
ColorQuartileMatrixPlotter.setDataTable(DataTable dataTable)
|
void |
BoundDiagram.setDataTable(DataTable dataTable)
|
void |
AndrewsCurves.setDataTable(DataTable dataTable)
|
void |
PlotterLegend.setLegendColumn(DataTable dataTable,
int legendColumn)
|
void |
PlotterAdapter.setParameter(DataTable dataTable,
java.lang.String key,
java.lang.Object value)
|
void |
Plotter.setParameter(DataTable dataTable,
java.lang.String key,
java.lang.Object parameter)
Sets the given parameter. |
| Constructors in com.rapidminer.gui.plotter with parameters of type DataTable | |
|---|---|
AndrewsCurves(DataTable dataTable)
Init the AndrewsCurvesPlot. |
|
BoundDiagram(DataTable dataTable)
|
|
ColorQuartileMatrixPlotter(DataTable dataTable)
|
|
ColorQuartilePlotter(DataTable dataTable)
|
|
DensityPlotter(DataTable dataTable)
|
|
GridVizPlotter(DataTable dataTable)
Constructs a new GridVizPlotter. |
|
HintonDiagram(DataTable dataTable)
|
|
ParallelPlotter(DataTable dataTable)
|
|
PlotterPanel(DataTable dataTable)
Creates a new plotter panel based on the given DataTable object. |
|
PlotterPanel(DataTable dataTable,
java.util.LinkedHashMap<java.lang.String,java.lang.Class<? extends Plotter>> availablePlotters)
Creates a new plotter panel based on the given DataTable object. |
|
QuartilePlotter(DataTable dataTable)
|
|
RadVizPlotter(DataTable dataTable)
Creates a new RadViz plotter from the given data table. |
|
ScatterMatrixPlotter(DataTable dataTable)
|
|
ScatterPlotter(DataTable dataTable)
|
|
SimplePlotterDialog(DataTable dataTable)
|
|
SimplePlotterDialog(DataTable dataTable,
boolean modal)
|
|
SimplePlotterDialog(java.awt.Frame owner,
DataTable dataTable,
int width,
int height,
boolean createPlotterPanelButton,
boolean modal)
|
|
SimplePlotterPanelDialog(DataTable dataTable)
|
|
SimplePlotterPanelDialog(DataTable dataTable,
boolean modal)
|
|
SimplePlotterPanelDialog(java.awt.Frame owner,
DataTable dataTable,
int width,
int height,
boolean modal)
|
|
SurveyPlotter(DataTable dataTable)
|
|
| Uses of DataTable in com.rapidminer.gui.plotter.charts |
|---|
| Fields in com.rapidminer.gui.plotter.charts declared as DataTable | |
|---|---|
protected DataTable |
HistogramColorChart.dataTable
|
protected DataTable |
HistogramChart.dataTable
|
| Methods in com.rapidminer.gui.plotter.charts with parameters of type DataTable | |
|---|---|
void |
SeriesChartPlotter.setDataTable(DataTable dataTable)
|
void |
ParetoChartPlotter.setDataTable(DataTable dataTable)
|
void |
ParallelPlotter2.setDataTable(DataTable dataTable)
|
void |
MultipleSeriesChartPlotter.setDataTable(DataTable dataTable)
|
void |
MultipleScatterPlotter.setDataTable(DataTable dataTable)
|
void |
HistogramColorChart.setDataTable(DataTable dataTable)
|
void |
HistogramChart.setDataTable(DataTable dataTable)
|
void |
DistributionPlotter.setDataTable(DataTable dataTable)
|
void |
DeviationChartPlotter.setDataTable(DataTable dataTable)
|
void |
BubbleChartPlotter.setDataTable(DataTable dataTable)
|
void |
BarChartPlotter.setDataTable(DataTable dataTable)
|
void |
AbstractPieChartPlotter.setDataTable(DataTable dataTable)
|
void |
Abstract2DChartPlotter.setDataTable(DataTable dataTable)
|
| Constructors in com.rapidminer.gui.plotter.charts with parameters of type DataTable | |
|---|---|
Abstract2DChartPlotter(DataTable dataTable)
|
|
AbstractPieChartPlotter(DataTable dataTable)
|
|
BarChartPlotter(DataTable dataTable)
|
|
BubbleChartPlotter(DataTable dataTable)
|
|
DeviationChartPlotter(DataTable dataTable)
|
|
DistributionPlotter(DataTable dataTable)
|
|
HistogramChart(DataTable dataTable)
|
|
HistogramColorChart(DataTable dataTable)
|
|
MultipleScatterPlotter(DataTable dataTable)
|
|
MultipleSeriesChartPlotter(DataTable dataTable)
|
|
ParallelPlotter2(DataTable dataTable)
|
|
ParetoChartPlotter(DataTable dataTable)
|
|
SeriesChartPlotter(DataTable dataTable)
|
|
| Uses of DataTable in com.rapidminer.gui.plotter.conditions |
|---|
| Methods in com.rapidminer.gui.plotter.conditions with parameters of type DataTable | |
|---|---|
boolean |
RowsPlotterCondition.acceptDataTable(DataTable dataTable)
|
boolean |
PlotterCondition.acceptDataTable(DataTable dataTable)
|
boolean |
CombinedPlotterCondition.acceptDataTable(DataTable dataTable)
|
boolean |
ColumnsPlotterCondition.acceptDataTable(DataTable dataTable)
|
boolean |
BasicPlotterCondition.acceptDataTable(DataTable dataTable)
|
java.lang.String |
RowsPlotterCondition.getRejectionReason(DataTable dataTable)
|
java.lang.String |
PlotterCondition.getRejectionReason(DataTable dataTable)
|
java.lang.String |
CombinedPlotterCondition.getRejectionReason(DataTable dataTable)
|
java.lang.String |
ColumnsPlotterCondition.getRejectionReason(DataTable dataTable)
|
java.lang.String |
BasicPlotterCondition.getRejectionReason(DataTable dataTable)
|
| Uses of DataTable in com.rapidminer.gui.plotter.mathplot |
|---|
| Methods in com.rapidminer.gui.plotter.mathplot that return DataTable | |
|---|---|
protected DataTable |
JMathPlotter.getDataTable()
|
| Methods in com.rapidminer.gui.plotter.mathplot with parameters of type DataTable | |
|---|---|
void |
JMathPlotter.setDataTable(DataTable dataTable)
|
| Constructors in com.rapidminer.gui.plotter.mathplot with parameters of type DataTable | |
|---|---|
BoxPlot2D(DataTable dataTable)
|
|
BoxPlot3D(DataTable dataTable)
|
|
JMathPlotter(DataTable dataTable)
Creates the new plotter and sets the data table. |
|
JMathPlotter2D(DataTable dataTable)
|
|
JMathPlotter3D(DataTable dataTable)
|
|
ScatterPlot3D(DataTable dataTable)
|
|
ScatterPlot3DColor(DataTable dataTable)
|
|
SticksPlot2D(DataTable dataTable)
|
|
SticksPlot3D(DataTable dataTable)
|
|
SurfacePlot3D(DataTable dataTable)
|
|
| Uses of DataTable in com.rapidminer.gui.plotter.som |
|---|
| Fields in com.rapidminer.gui.plotter.som declared as DataTable | |
|---|---|
protected DataTable |
SOMPlotter.dataTable
|
| Methods in com.rapidminer.gui.plotter.som with parameters of type DataTable | |
|---|---|
void |
SOMPlotter.prepareSOM(DataTable dataTable,
double adaptationRadius,
int trainRounds,
boolean threadMode)
|
void |
SOMPlotter.setDataTable(DataTable dataTable)
|
| Uses of DataTable in com.rapidminer.gui.renderer |
|---|
| Methods in com.rapidminer.gui.renderer that return DataTable | |
|---|---|
abstract DataTable |
AbstractDataTableTableRenderer.getDataTable(java.lang.Object renderable,
IOContainer ioContainer)
|
abstract DataTable |
AbstractDataTablePlotterRenderer.getDataTable(java.lang.Object renderable,
IOContainer ioContainer)
|
| Constructors in com.rapidminer.gui.renderer with parameters of type DataTable | |
|---|---|
AbstractDataTableTableRenderer.DefaultTableable(DataTable dataTable,
Renderer renderer)
|
|
| Uses of DataTable in com.rapidminer.gui.renderer.data |
|---|
| Methods in com.rapidminer.gui.renderer.data that return DataTable | |
|---|---|
DataTable |
ExampleSetPlotRenderer.getDataTable(java.lang.Object renderable,
IOContainer container)
This method is used to create a DataTable from this example set. |
DataTable |
ExampleSetDataRenderer.getDataTable(java.lang.Object renderable,
IOContainer container)
This method is used to create a DataTable from this example set. |
| Uses of DataTable in com.rapidminer.gui.renderer.models |
|---|
| Methods in com.rapidminer.gui.renderer.models that return DataTable | |
|---|---|
DataTable |
KernelModelSupportVectorRenderer.getDataTable(java.lang.Object renderable,
IOContainer ioContainer)
|
DataTable |
KernelModelPlotRenderer.getDataTable(java.lang.Object renderable,
IOContainer ioContainer)
|
| Uses of DataTable in com.rapidminer.gui.renderer.weights |
|---|
| Methods in com.rapidminer.gui.renderer.weights that return DataTable | |
|---|---|
DataTable |
AttributeWeightsTableRenderer.getDataTable(java.lang.Object renderable,
IOContainer ioContainer)
|
DataTable |
AttributeWeightsPlotRenderer.getDataTable(java.lang.Object renderable,
IOContainer ioContainer)
|
| Uses of DataTable in com.rapidminer.gui.viewer |
|---|
| Methods in com.rapidminer.gui.viewer that return DataTable | |
|---|---|
DataTable |
DataTableViewer.getDataTable()
|
| Methods in com.rapidminer.gui.viewer with parameters of type DataTable | |
|---|---|
void |
DataTableViewerTable.dataTableUpdated(DataTable source)
|
void |
DataTableViewer.dataTableUpdated(DataTable dataTable)
|
void |
DataTableViewerTable.setDataTable(DataTable dataTable)
|
void |
DataTableViewer.setDataTable(DataTable dataTable)
|
| Constructors in com.rapidminer.gui.viewer with parameters of type DataTable | |
|---|---|
DataTableViewer(DataTable dataTable)
|
|
DataTableViewer(DataTable dataTable,
boolean showPlotter)
|
|
DataTableViewer(DataTable dataTable,
boolean showPlotter,
int startMode)
|
|
DataTableViewer(DataTable dataTable,
java.util.LinkedHashMap<java.lang.String,java.lang.Class<? extends Plotter>> availablePlotters)
|
|
DataTableViewer(DataTable dataTable,
java.util.LinkedHashMap<java.lang.String,java.lang.Class<? extends Plotter>> availablePlotters,
boolean showPlotter,
int startMode,
boolean autoResize)
|
|
DataTableViewerTable(DataTable dataTable,
boolean sortable,
boolean columnMovable,
boolean autoResize)
|
|
DataTableViewerTableModel(DataTable dataTable)
|
|
| Uses of DataTable in com.rapidminer.operator.learner.functions.kernel |
|---|
| Methods in com.rapidminer.operator.learner.functions.kernel that return DataTable | |
|---|---|
DataTable |
KernelModel.createWeightsTable()
|
| Uses of DataTable in com.rapidminer.operator.visualization |
|---|
| Methods in com.rapidminer.operator.visualization that return DataTable | |
|---|---|
DataTable |
LiftParetoChart.getLiftChartData()
|
| Constructors in com.rapidminer.operator.visualization with parameters of type DataTable | |
|---|---|
LiftParetoChart(DataTable liftChartData,
java.lang.String targetValue,
boolean showBarLabels,
boolean showCumulativeLabels,
boolean rotateLabels)
|
|
| Uses of DataTable in com.rapidminer.operator.visualization.dependencies |
|---|
| Methods in com.rapidminer.operator.visualization.dependencies that return DataTable | |
|---|---|
DataTable |
NumericalMatrix.createMatrixDataTable()
|
DataTable |
NumericalMatrix.createPairwiseDataTable()
|
|
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||