source: branches/MetisMQI/src/main/java/weka/gui/visualize/Visualize.props

Last change on this file was 29, checked in by gnappo, 14 years ago

Taggata versione per la demo e aggiunto branch.

File size: 2.2 KB
RevLine 
[29]1# Properties for visualization
2#
3# Version: $Revision: 5015 $
4
5# Maximum precision for numeric values
6weka.gui.visualize.precision=10
7
8# Colour for the axis in the 2D plot (can use R,G,B format)
9weka.gui.visualize.Plot2D.axisColour=green
10
11# Colour for the background of the 2D plot (can use R,G,B format)
12weka.gui.visualize.Plot2D.backgroundColour=white
13
14# The JFrame (needs to implement the interface weka.gui.visualize.InstanceInfo)
15# for displaying Instance information.
16weka.gui.visualize.Plot2D.instanceInfoFrame=weka.gui.visualize.InstanceInfoFrame
17
18# Display the list of one dimensional attribute visualizations
19weka.gui.visualize.VisualizePanel.displayAttributeBars=true
20
21# Colour for the background of the attribute bars in the
22# AttributePanel (can use R,G,B format)
23weka.gui.visualize.AttributePanel.barColour=white
24
25# If you regularly visualize certain datasets with the same structure
26# you might want to define default x, y and colour dimensions (attributes)
27# to visualize on.
28# Just uncomment and set up the following
29# weka.gui.visualize.VisualizePanel.<relation name>.XDimension=<attribute name>
30# weka.gui.visualize.VisualizePanel.<relation name>.YDimension=<attribute name>
31# weka.gui.visualize.VisualizePanel.<relation name>.ColourDimension=<attribute name>
32# NOTE: spaces in relation names can be handled by using
33# escape characters (java 1.2), eg. my\ first\ relation\ name
34
35# Defaults for threshold curve plots
36weka.gui.visualize.ThresholdVisualizePanel.ThresholdCurve.XDimension=False\ Positive\ Rate
37weka.gui.visualize.ThresholdVisualizePanel.ThresholdCurve.YDimension=True\ Positive\ Rate
38weka.gui.visualize.ThresholdVisualizePanel.ThresholdCurve.ColourDimension=Threshold
39
40#Defaults for cost curve plots
41weka.gui.visualize.VisualizePanel.CostCurve.XDimension=Probability\ Cost\ Function
42weka.gui.visualize.VisualizePanel.CostCurve.YDimension=Normalized\ Expected\ Cost
43weka.gui.visualize.VisualizePanel.CostCurve.ColourDimension=Threshold
44
45# Defaults for margin curve plots
46weka.gui.visualize.VisualizePanel.MarginCurve.XDimension=Margin
47weka.gui.visualize.VisualizePanel.MarginCurve.YDimension=Cumulative
48weka.gui.visualize.VisualizePanel.MarginCurve.ColourDimension=Margin
Note: See TracBrowser for help on using the repository browser.