more changes for subtick labels.
authorLisa Hsu <hsul@eecs.umich.edu>
Sat, 18 Feb 2006 22:29:43 +0000 (17:29 -0500)
committerLisa Hsu <hsul@eecs.umich.edu>
Sat, 18 Feb 2006 22:29:43 +0000 (17:29 -0500)
util/stats/barchart.py:
    oop forgot this for 1D graph cases.
util/stats/chart.py:
    need to add default param to chart.

--HG--
extra : convert_revision : f4e6c6c614d584e7928ed905e97608716455ab6c

util/stats/barchart.py
util/stats/chart.py

index 99f9b8f35d2105c2b6590924ca5dd832f3ac2b52..ddb31be468964acab3e440c10162a6d0869bba59 100644 (file)
@@ -281,7 +281,8 @@ if __name__ == '__main__':
         chart1.xticks = [ 'xtick%d' % x for x in xrange(myshape[0]) ]
         chart1.title = 'this is the title'
         chart1.figure_size = [0.1, 0.2, 0.7, 0.85 ]
-        chart1.xsubticks = [ '%d' % x for x in xrange(myshape[1]) ]
+        if len(myshape) > 1:
+            chart1.xsubticks = [ '%d' % x for x in xrange(myshape[1]) ]
         chart1.graph()
         chart1.savefig('/tmp/test1.png')
         chart1.savefig('/tmp/test1.ps')
index 1e301cb583c83a89fcb29bea174bc772d56e90fc..095620172e3e200dcd4575d444159cfc0ddf0985 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2005 The Regents of The University of Michigan
+# Copyright (c) 2005-2006 The Regents of The University of Michigan
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
@@ -38,6 +38,7 @@ class ChartOptions(object):
                  'xlabel' : None,
                  'ylabel' : None,
                  'xticks' : None,
+                 'xsubticks' : None,
                  'yticks' : None,
                  'ylim' : None,
                  }