Uses of Class
org.knime.base.node.viz.plotter.AbstractPlotter

Packages that use AbstractPlotter
org.knime.base.node.mine.regression.linear.view Customized scatter plot view that also shows the regression line. 
org.knime.base.node.mine.regression.polynomial.learner The polyreg's predictor package contains just the two classes that make up the predictor node: the model and its factory. 
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.histogram.impl.fixed This is the memory saving implementation of the abstract histogram plotter. 
org.knime.base.node.viz.histogram.impl.interactive This is the interactive implementation of the abstract histogram plotter. 
org.knime.base.node.viz.pie.impl This package contains the plotter framework implementation classes. 
org.knime.base.node.viz.pie.impl.fixed This package contains the fixed pie chart plotter classes. 
org.knime.base.node.viz.pie.impl.interactive This package contains the interactive pie chart plotter classes. 
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.node This package contains a default node implementation which can be used if a simple plotter is implemented, which displays data from one inport and also wants to display only a restricted number of rows. 
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 AbstractPlotter in org.knime.base.node.mine.regression.linear.view
 

Subclasses of AbstractPlotter in org.knime.base.node.mine.regression.linear.view
 class LinRegLinePlotter
          A scatter plot with a regression line.
 

Uses of AbstractPlotter in org.knime.base.node.mine.regression.polynomial.learner
 

Subclasses of AbstractPlotter in org.knime.base.node.mine.regression.polynomial.learner
 class PolyRegLineScatterPlotter
          This class is the plotter used inside the PolyRegLineNodeView.
 

Uses of AbstractPlotter in org.knime.base.node.preproc.discretization.caim2.modelcreator
 

Subclasses of AbstractPlotter in org.knime.base.node.preproc.discretization.caim2.modelcreator
 class BinModelPlotter
          This plotter draws a DiscretizationModel.
 

Methods in org.knime.base.node.preproc.discretization.caim2.modelcreator with parameters of type AbstractPlotter
 void BinModelNodeView.addVisualization(AbstractPlotter plotter, String title)
          Adds another tab containing a plotter.
 

Constructors in org.knime.base.node.preproc.discretization.caim2.modelcreator with parameters of type AbstractPlotter
BinModelNodeView(CAIMDiscretizationNodeModel model, AbstractPlotter plotter)
          The NodeView which sets the model and calls the right methods of the plotter.
BinModelNodeView(CAIMDiscretizationNodeModel model, AbstractPlotter plotter, String title)
          A generic NodeView which sets the model and calls the right methods of the abstract plotter.
 

Uses of AbstractPlotter in org.knime.base.node.viz.histogram.impl
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.histogram.impl
 class AbstractHistogramPlotter
          Abstract class which is the coordinator between the HistogramDrawingPane and the AbstractHistogramVizModel.
 

Uses of AbstractPlotter in org.knime.base.node.viz.histogram.impl.fixed
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.histogram.impl.fixed
 class FixedHistogramPlotter
          This class is the controller between the data model of the FixedHistogramDataModel class and the view HistogramDrawingPane.
 

Uses of AbstractPlotter in org.knime.base.node.viz.histogram.impl.interactive
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.histogram.impl.interactive
 class InteractiveHistogramPlotter
          This class is the controller between the data model of the InteractiveHistogramVizModel class and the view HistogramDrawingPane.
 

Uses of AbstractPlotter in org.knime.base.node.viz.pie.impl
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.pie.impl
 class PiePlotter<P extends PieProperties<D>,D extends PieVizModel>
          The abstract plotter implementation of the pie chart which acts as the controller between the PieVizModel and the PieDrawingPane.
 

Uses of AbstractPlotter in org.knime.base.node.viz.pie.impl.fixed
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.pie.impl.fixed
 class FixedPiePlotter
          The fixed column implementation of the pie plotter.
 

Uses of AbstractPlotter in org.knime.base.node.viz.pie.impl.interactive
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.pie.impl.interactive
 class InteractivePiePlotter
          The interactive implementation of the pie plotter which allows the user to change the pie and aggregation column in the view and supports hiliting.
 

Uses of AbstractPlotter in org.knime.base.node.viz.plotter.basic
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.plotter.basic
 class BasicPlotter
          Tha BasicPlotter provides means to add some simple, basic graphical forms to the drawing pane, which are automatically mapped to the drawing pane's dimension.
 class BasicPlotterImpl
           
 

Uses of AbstractPlotter in org.knime.base.node.viz.plotter.box
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.plotter.box
 class BoxPlotter
          The BoxPlotter calculates, based on the statistical parameters determined by the BoxPlotNodeModel, the Boxes to draw in the updateSize method.
 class ConditionalBoxPlotter
           
 

Uses of AbstractPlotter in org.knime.base.node.viz.plotter.columns
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.plotter.columns
 class TwoColumnPlotter
          Wraps the functionality where the data of two columns have to be displayed.
 

Uses of AbstractPlotter in org.knime.base.node.viz.plotter.dendrogram
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.plotter.dendrogram
 class DendrogramPlotter
          Converts a DendrogramNode into a BinaryTree of DendrogramPoints, which is the visual representation of a hierachical clustering result stored in the DendrogramNode.
 

Uses of AbstractPlotter in org.knime.base.node.viz.plotter.line
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.plotter.line
 class LinePlotter
          Plots the values of all selected numeric columns as lines in a plot, where the x axis are the rows and the y axis are the values from the minimum of the values in all columns to the maximum of the values of all selected columns.
 

Uses of AbstractPlotter in org.knime.base.node.viz.plotter.node
 

Methods in org.knime.base.node.viz.plotter.node with parameters of type AbstractPlotter
 void DefaultVisualizationNodeView.addVisualization(AbstractPlotter plotter, String title)
          Adds another tab with title title containing a plotter.
 

Constructors in org.knime.base.node.viz.plotter.node with parameters of type AbstractPlotter
DefaultVisualizationNodeView(NodeModel model, AbstractPlotter plotter)
          A generic NodeView which sets the model and calls the right methods of the plotters.
DefaultVisualizationNodeView(NodeModel model, AbstractPlotter plotter, String title)
          A generic NodeView which sets the model and calls the right methods of the plotters the title is the title of the according tab.
 

Uses of AbstractPlotter in org.knime.base.node.viz.plotter.parcoord
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.plotter.parcoord
 class ParallelCoordinatesPlotter
           
 

Uses of AbstractPlotter in org.knime.base.node.viz.plotter.scatter
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.plotter.scatter
 class ScatterPlotter
          Maps the two selected columns to the screen coordinates.
 

Uses of AbstractPlotter in org.knime.base.node.viz.plotter.scattermatrix
 

Subclasses of AbstractPlotter in org.knime.base.node.viz.plotter.scattermatrix
 class ScatterMatrixPlotter
          Creates the scatter matrix elements as rectangles with a x and y coordinates, passes these ScatterMatrixElements to the ScatterMatrixDrawingPane.
 



Copyright, 2003 - 2010. All rights reserved.
University of Konstanz, Germany.
Chair for Bioinformatics and Information Mining, Prof. Dr. Michael R. Berthold.
You may not modify, publish, transmit, transfer or sell, reproduce, create derivative works from, distribute, perform, display, or in any way exploit any of the content, in whole or in part, except as otherwise expressly permitted in writing by the copyright owner or as specified in the license file distributed with this product.