Revision: 3976
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3976&view=rev
Author: jdh2358
Date: 2007-10-21 09:06:57 -0700 (Sun, 21 Oct 2007)
Log Message:
-----------
fixed stock scatter
Modified Paths:
--------------
trunk/scipy06/scripts/stock_scatter2.py
Modified: trunk/scipy06/scripts/stock_scatter2.py
===================================================================
--- trunk/scipy06/scripts/stock_scatter2.py 2007-10-21 16:02:07 UTC (rev 3975)
+++ trunk/scipy06/scripts/stock_scatter2.py 2007-10-21 16:06:57 UTC (rev 3976)
@@ -34,7 +34,7 @@
converters={0:datestr2num},
skiprows=1, unpack=True)
-if 0: # pay the load only once in interactive mode
+if 1: # pay the load only once in interactive mode
tickerd = dict()
for ticker in tickers:
tickerd[ticker] = DailyData(ticker)
@@ -138,9 +138,8 @@
fig.subplots_adjust(bottom=0.15, hspace=0.05)
+ fig.canvas.manager.show()
- draw()
-
class ScatterPoints:
def __init__(self, ax, pnts, **kwargs):
"""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|