|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.awt.Component
java.awt.Container
javax.swing.JComponent
javax.swing.JPanel
weka.gui.visualize.PrintablePanel
weka.gui.visualize.VisualizePanel
public class VisualizePanel
This panel allows the user to visualize a dataset (and if provided) a
classifier's/clusterer's predictions in two dimensions.
If the user selects a nominal attribute as the colouring attribute then
each point is drawn in a colour that corresponds to the discrete value
of that attribute for the instance. If the user selects a numeric
attribute to colour on, then the points are coloured using a spectrum
ranging from blue to red (low values to high).
When a classifier's predictions are supplied they are plotted in one
of two ways (depending on whether the class is nominal or numeric).
For nominal class: an error made by a classifier is plotted as a square
in the colour corresponding to the class it predicted.
For numeric class: predictions are plotted as varying sized x's, where
the size of the x is related to the magnitude of the error.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class javax.swing.JComponent |
|---|
JComponent.AccessibleJComponent |
| Nested classes/interfaces inherited from class java.awt.Component |
|---|
Component.BaselineResizeBehavior |
| Field Summary |
|---|
| Fields inherited from class javax.swing.JComponent |
|---|
TOOL_TIP_TEXT_KEY, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
| Fields inherited from class java.awt.Component |
|---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
| Fields inherited from interface java.awt.image.ImageObserver |
|---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
| Constructor Summary | |
|---|---|
VisualizePanel()
Constructor |
|
VisualizePanel(VisualizePanelListener ls)
This constructor allows a VisualizePanelListener to be set. |
|
| Method Summary | |
|---|---|
void |
addActionListener(ActionListener act)
Add a listener for this visualize panel |
void |
addPlot(PlotData2D newPlot)
Set a new plot to the visualize panel |
int |
getCIndex()
Get the index of the attribute selected for coloring |
Instances |
getInstances()
Get the master plot's instances |
String |
getName()
Returns the name associated with this plot. |
weka.gui.visualize.VisualizePanel.PlotPanel |
getPlotPanel()
Returns the underlying plot panel. |
boolean |
getShowAttBars()
Gets whether or not attribute bars are being displayed. |
boolean |
getShowClassPanel()
Gets whether or not the class panel is being displayed. |
int |
getSIndex()
Get the index of the shape selected for creating splits. |
int |
getXIndex()
Get the index of the attribute on the x axis |
int |
getYIndex()
Get the index of the attribute on the y axis |
static void |
main(String[] args)
Main method for testing this class |
void |
removeAllPlots()
Removes all the plots. |
void |
setColourIndex(int index)
Sets the index used for colouring. |
void |
setInstances(Instances inst)
Tells the panel to use a new set of instances. |
void |
setLog(Logger newLog)
Sets the Logger to receive informational messages |
void |
setMasterPlot(PlotData2D newPlot)
Set the master plot for the visualize panel |
void |
setName(String plotName)
Set a name for this plot |
void |
setShapes(FastVector l)
This will set the shapes for the instances. |
void |
setShowAttBars(boolean sab)
Set whether the attribute bars should be shown or not. |
void |
setShowClassPanel(boolean scp)
Set whether the class panel should be shown or not. |
void |
setSIndex(int index)
Set the shape for creating splits. |
void |
setUpComboBoxes(Instances inst)
initializes the comboboxes based on the data |
void |
setXIndex(int index)
Set the index of the attribute for the x axis |
void |
setYIndex(int index)
Set the index of the attribute for the y axis |
| Methods inherited from class weka.gui.visualize.PrintablePanel |
|---|
getSaveDialogTitle, getWriter, getWriters, getXScale, getYScale, saveComponent, setSaveDialogTitle, setScale |
| Methods inherited from class javax.swing.JPanel |
|---|
getAccessibleContext, getUI, getUIClassID, setUI, updateUI |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public VisualizePanel(VisualizePanelListener ls)
ls - the listener to usepublic VisualizePanel()
| Method Detail |
|---|
public void setLog(Logger newLog)
newLog - the Logger that will now get info messagespublic void setShowAttBars(boolean sab)
sab - false if attribute bars are not to be displayed.public boolean getShowAttBars()
public void setShowClassPanel(boolean scp)
scp - false if class panel is not to be displayedpublic boolean getShowClassPanel()
public void setColourIndex(int index)
index - the index of the attribute to use for colouring
public void setXIndex(int index)
throws Exception
index - the index for the x axis
Exception - if index is out of range.public int getXIndex()
public void setYIndex(int index)
throws Exception
index - the index for the y axis
Exception - if index is out of range.public int getYIndex()
public int getCIndex()
public int getSIndex()
public void setSIndex(int index)
throws Exception
index - The index of the shape.
Exception - if index is out of range.public void addActionListener(ActionListener act)
act - an ActionListenerpublic void setName(String plotName)
setName in class ComponentplotName - the name for the plotpublic String getName()
getName in class Componentpublic Instances getInstances()
public void setShapes(FastVector l)
l - A list of the shapes, providing that
the objects in the lists are non editable the data will be
kept intact.public void setInstances(Instances inst)
inst - a set of Instancespublic void setUpComboBoxes(Instances inst)
inst - the data to base the combobox-setup onpublic void removeAllPlots()
public void setMasterPlot(PlotData2D newPlot)
throws Exception
newPlot - the new master plot
Exception - if the master plot could not be set
public void addPlot(PlotData2D newPlot)
throws Exception
newPlot - the new plot to add
Exception - if the plot could not be addedpublic weka.gui.visualize.VisualizePanel.PlotPanel getPlotPanel()
public static void main(String[] args)
args - the commandline parameters
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||