|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AbstractDrawingPane | |
---|---|
org.knime.base.node.mine.regression.linear.view | Customized scatter plot view that also shows the regression line. |
org.knime.base.node.preproc.discretization.caim2.modelcreator | Contains the classes implementing a node that learns a class supervised discretization (binning) model. |
org.knime.base.node.viz.histogram.impl | This package contains the different plotter implementations of the histogram and the root class AbstractHistogramPlotter and AbstractHistogramProperties that need to be implemented by the concrete implementation. |
org.knime.base.node.viz.pie.impl | This package contains the plotter framework implementation classes. |
org.knime.base.node.viz.plotter | Contains the basic viewing framework for KNIME. |
org.knime.base.node.viz.plotter.basic |
The idea behind the BasicPlotter is to provide a small fraction of the
functionality known from "R" or "GnuPlot", if you have some basic elements,
such as lines, ellipses, rectangles, you want to add to your view you can use
the BasicPlotter . |
org.knime.base.node.viz.plotter.box | Contains all classes that realize a box plot. |
org.knime.base.node.viz.plotter.columns | This package contains convenient classes when two or n columns
should be displayed. |
org.knime.base.node.viz.plotter.dendrogram | Contains all classes necessary to visualize a hierachical clustering result
represented by a DendrogramNode . |
org.knime.base.node.viz.plotter.line | A line plot plots the numeric columns of the input table as lines. |
org.knime.base.node.viz.plotter.parcoord | A ParallelCoordinatePlot is a representation of multi-dimensional information or data, in which multiple dimensions are allocated to parallel axes on-screen. |
org.knime.base.node.viz.plotter.scatter | A scatter plot maps to columns (dimensions) of data to 2-dimensional space, which results that each row (data instance) can be represented as one 2-dimensional point. |
org.knime.base.node.viz.plotter.scattermatrix | A scatter matrix plot is a matrix of scatter plots, where each selected column is plotted against each selected column. |
Uses of AbstractDrawingPane in org.knime.base.node.mine.regression.linear.view |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.mine.regression.linear.view | |
---|---|
class |
LinRegLineDrawingPane
DrawingPane that also draws the regression line. |
Uses of AbstractDrawingPane in org.knime.base.node.preproc.discretization.caim2.modelcreator |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.preproc.discretization.caim2.modelcreator | |
---|---|
class |
BinModelDrawingPane
The actual drawing pain, rendering the binned column model. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.histogram.impl |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.viz.histogram.impl | |
---|---|
class |
HistogramDrawingPane
The view class of a Histogram visualisation. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.pie.impl |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.viz.pie.impl | |
---|---|
class |
PieDrawingPane
The drawing pane implementation of the pie chart which handles the real drawing on the screen. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.plotter |
---|
Methods in org.knime.base.node.viz.plotter that return AbstractDrawingPane | |
---|---|
AbstractDrawingPane |
AbstractPlotter.getDrawingPane()
|
AbstractDrawingPane |
AbstractPlotter.SelectionMouseListener.getInternalDrawingPane()
|
Constructors in org.knime.base.node.viz.plotter with parameters of type AbstractDrawingPane | |
---|---|
AbstractPlotter.SelectionMouseListener(AbstractDrawingPane pane)
|
|
AbstractPlotter(AbstractDrawingPane drawingPane,
AbstractPlotterProperties properties)
Creates a new plotter with a drawing pane and a properties panel. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.plotter.basic |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.viz.plotter.basic | |
---|---|
class |
BasicDrawingPane
The BasicDrawingPane stores the
BasicDrawingElement s and
paints them in the BasicDrawingPane.paintContent(Graphics) method by calling their
#paint(Graphics2D) method. |
class |
BasicDrawingPaneImpl
|
Constructors in org.knime.base.node.viz.plotter.basic with parameters of type AbstractDrawingPane | |
---|---|
BasicPlotter(AbstractDrawingPane panel,
AbstractPlotterProperties properties)
Always provide a possibility to construct a customized plotter. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.plotter.box |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.viz.plotter.box | |
---|---|
class |
BoxPlotDrawingPane
Paints the Box es, the dots from
the DotInfoArray
(since it derives from
ScatterPlotterDrawingPane )
and the labels for the boxes and outliers. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.plotter.columns |
---|
Constructors in org.knime.base.node.viz.plotter.columns with parameters of type AbstractDrawingPane | |
---|---|
TwoColumnPlotter(AbstractDrawingPane panel,
AbstractPlotterProperties properties)
Constructor for extending classes. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.plotter.dendrogram |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.viz.plotter.dendrogram | |
---|---|
class |
DendrogramDrawingPane
Interprets the BinaryTree
of DendrogramPoint s such
that the leaf nodes (the data points) are painted and the cluster nodes are
drawn with a horizontal line between the contained subnodes and vertical
lines to that subnodes. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.plotter.line |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.viz.plotter.line | |
---|---|
class |
LinePlotterDrawingPane
Connects the dots in the passed DotInfoArray with lines. |
Constructors in org.knime.base.node.viz.plotter.line with parameters of type AbstractDrawingPane | |
---|---|
LinePlotter(AbstractDrawingPane panel,
AbstractPlotterProperties properties)
The construction kit constructor. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.plotter.parcoord |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.viz.plotter.parcoord | |
---|---|
class |
ParallelCoordinateDrawingPane
Since the ParallelCoordinatesPlotter
only calculates the mapped datapoints, the connection of them by lines or
curves is done here, also the missing values handling. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.plotter.scatter |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.viz.plotter.scatter | |
---|---|
class |
ScatterPlotterDrawingPane
Shows the mapped data points and provides a tooltip for each data point with the domain value and the row ID. |
Constructors in org.knime.base.node.viz.plotter.scatter with parameters of type AbstractDrawingPane | |
---|---|
ScatterPlotter(AbstractDrawingPane panel,
AbstractPlotterProperties properties)
Construction kit constructor to construct a customized plotter, registeres all necessary listeners. |
Uses of AbstractDrawingPane in org.knime.base.node.viz.plotter.scattermatrix |
---|
Subclasses of AbstractDrawingPane in org.knime.base.node.viz.plotter.scattermatrix | |
---|---|
class |
ScatterMatrixDrawingPane
Holds a matrix of ScatterMatrixElement s. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |