Mailing List Archive

svn commit: r329669 - /spamassassin/trunk/masses/rule-qa/rule-hits-over-time
Author: jm
Date: Sun Oct 30 15:48:09 2005
New Revision: 329669

URL: http://svn.apache.org/viewcvs?rev=329669&view=rev
Log:
try out not plotting undefined values

Modified:
spamassassin/trunk/masses/rule-qa/rule-hits-over-time

Modified: spamassassin/trunk/masses/rule-qa/rule-hits-over-time
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/masses/rule-qa/rule-hits-over-time?rev=329669&r1=329668&r2=329669&view=diff
==============================================================================
--- spamassassin/trunk/masses/rule-qa/rule-hits-over-time (original)
+++ spamassassin/trunk/masses/rule-qa/rule-hits-over-time Sun Oct 30 15:48:09 2005
@@ -347,16 +347,16 @@

# to plot "undefined" values as 0
# qq{ 1:(\$$col >= 0 ? \$$col : 0) }.
- qq{ 1:(\$$col >= 0 ? \$$col : -1) }.
-
- ## to not plot "undefined" values at all (ugly!)
- # qq{ 1:(\$$col >= 0 ? \$$col : 1/0) }.
+ # as -1
+ # qq{ 1:(\$$col >= 0 ? \$$col : -1) }.
+ # to not plot "undefined" values at all (ugly!)
+ qq{ 1:(\$$col >= 0 ? \$$col : 1/0) }.

## smoothing: not so useful
# qq{ smooth bezier }.

- qq{ with lines lt $style }.
- # qq{ with linespoints lt $style pt $style }.
+ # qq{ with lines lt $style }.
+ qq{ with linespoints lt $style pt $style }.

qq{ title '$legend' };