[29] | 1 | # Properties for visualization |
---|
| 2 | # |
---|
| 3 | # Version: $Revision: 5015 $ |
---|
| 4 | |
---|
| 5 | # Maximum precision for numeric values |
---|
| 6 | weka.gui.visualize.precision=10 |
---|
| 7 | |
---|
| 8 | # Colour for the axis in the 2D plot (can use R,G,B format) |
---|
| 9 | weka.gui.visualize.Plot2D.axisColour=green |
---|
| 10 | |
---|
| 11 | # Colour for the background of the 2D plot (can use R,G,B format) |
---|
| 12 | weka.gui.visualize.Plot2D.backgroundColour=white |
---|
| 13 | |
---|
| 14 | # The JFrame (needs to implement the interface weka.gui.visualize.InstanceInfo) |
---|
| 15 | # for displaying Instance information. |
---|
| 16 | weka.gui.visualize.Plot2D.instanceInfoFrame=weka.gui.visualize.InstanceInfoFrame |
---|
| 17 | |
---|
| 18 | # Display the list of one dimensional attribute visualizations |
---|
| 19 | weka.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) |
---|
| 23 | weka.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 |
---|
| 36 | weka.gui.visualize.ThresholdVisualizePanel.ThresholdCurve.XDimension=False\ Positive\ Rate |
---|
| 37 | weka.gui.visualize.ThresholdVisualizePanel.ThresholdCurve.YDimension=True\ Positive\ Rate |
---|
| 38 | weka.gui.visualize.ThresholdVisualizePanel.ThresholdCurve.ColourDimension=Threshold |
---|
| 39 | |
---|
| 40 | #Defaults for cost curve plots |
---|
| 41 | weka.gui.visualize.VisualizePanel.CostCurve.XDimension=Probability\ Cost\ Function |
---|
| 42 | weka.gui.visualize.VisualizePanel.CostCurve.YDimension=Normalized\ Expected\ Cost |
---|
| 43 | weka.gui.visualize.VisualizePanel.CostCurve.ColourDimension=Threshold |
---|
| 44 | |
---|
| 45 | # Defaults for margin curve plots |
---|
| 46 | weka.gui.visualize.VisualizePanel.MarginCurve.XDimension=Margin |
---|
| 47 | weka.gui.visualize.VisualizePanel.MarginCurve.YDimension=Cumulative |
---|
| 48 | weka.gui.visualize.VisualizePanel.MarginCurve.ColourDimension=Margin |
---|