On Wed, Feb 23, 2011 at 8:34 AM, Jeff Layton <layto...@att.net> wrote:
> Good morning, > > I'm looking for examples of creating a bar chart and then adding > a line chart on top of it (with the same y-axis). I haven't had > much luck with Google (probably using the wrong search terms). > > Thanks! > > Jeff > > Jeff, You should be able to just call the bar() function and then call the plot() function using the same axes object. For example (untested): import numpy as np import matplotlib.pyplot as plt fig = plt.figure() ax = fig.gca() xs = np.arange(10) ys = np.random.rand(10) ax.bar(xs, ys) ax.plot(xs, ys) plt.show() I hope that helps! Ben Root
------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users