From: <jd...@us...> - 2009-06-07 15:48:37
|
Revision: 7196 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7196&view=rev Author: jdh2358 Date: 2009-06-07 15:48:05 +0000 (Sun, 07 Jun 2009) Log Message: ----------- modifications to examples/docs to get them to build for the website Modified Paths: -------------- trunk/matplotlib/doc/pyplots/matplotlibrc trunk/matplotlib/doc/pyplots/tex_demo.png trunk/matplotlib/examples/pylab_examples/finance_work2.py trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/doc/pyplots/matplotlibrc =================================================================== --- trunk/matplotlib/doc/pyplots/matplotlibrc 2009-06-07 14:15:28 UTC (rev 7195) +++ trunk/matplotlib/doc/pyplots/matplotlibrc 2009-06-07 15:48:05 UTC (rev 7196) @@ -27,7 +27,6 @@ # the default backend; one of GTK GTKAgg GTKCairo FltkAgg QtAgg TkAgg # WX WXAgg Agg Cairo GD GDK Paint PS PDF SVG Template backend : Agg -numerix : numpy # numpy, Numeric or numarray #maskedarray : False # True to use external maskedarray module # instead of numpy.ma; this is a temporary # setting for testing maskedarray. Modified: trunk/matplotlib/doc/pyplots/tex_demo.png =================================================================== (Binary files differ) Modified: trunk/matplotlib/examples/pylab_examples/finance_work2.py =================================================================== --- trunk/matplotlib/examples/pylab_examples/finance_work2.py 2009-06-07 14:15:28 UTC (rev 7195) +++ trunk/matplotlib/examples/pylab_examples/finance_work2.py 2009-06-07 15:48:05 UTC (rev 7196) @@ -1,10 +1,5 @@ -## Plot the stock price with some technical indicators -## Example usage:: -## python stocks2.py --ticker=GE --startdate=2003 -## -import datetime, os, urllib, optparse +import datetime import numpy as np -import dateutil.parser import matplotlib.colors as colors import matplotlib.finance as finance import matplotlib.dates as mdates @@ -13,34 +8,12 @@ import matplotlib.pyplot as plt import matplotlib.font_manager as font_manager -today = datetime.date.today() -optionparser = optparse.OptionParser() +startdate = datetime.date(2006,1,1) +today = enddate = datetime.date.today() +ticker = 'SPY' -optionparser.add_option('-t', '--ticker', - dest='ticker', - help='a stock market ticker', - default='SPY') -optionparser.add_option('-s', '--startdate', - dest='startdate', - help='the start date', - default=(today-datetime.timedelta(days=365*2)).strftime('%Y-%m-%d')) - -optionparser.add_option('-e', '--enddate', - dest='enddate', - help='the end date', - default=today.strftime('%Y-%m-%d')) - - -(commandoptions, commandargs) = optionparser.parse_args() - - -startdate = dateutil.parser.parse(commandoptions.startdate) -enddate = dateutil.parser.parse(commandoptions.enddate) -ticker = commandoptions.ticker - - fh = finance.fetch_historical_yahoo(ticker, startdate, enddate) # a numpy record array with fields: date, open, high, low, close, volume, adj_close) Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2009-06-07 14:15:28 UTC (rev 7195) +++ trunk/matplotlib/lib/matplotlib/axes.py 2009-06-07 15:48:05 UTC (rev 7196) @@ -6019,7 +6019,7 @@ %(PolyCollection)s - .. plot:: mpl_examples/pylab_examples/fill_between_demo.py.py + .. plot:: mpl_examples/pylab_examples/fill_between_demo.py .. seealso:: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |