Re: [Matplotlib-users] 1. twinx and grid (garyr)

2014-02-09 Thread Nicolas Fauchereau
Hi Gary To get more control on which grid shows / doesn't, you can do: ax1.grid('on') ax2.grid('off') instead of: plt.grid() Nico On 9/02/2014, at 5:34 pm, matplotlib-users-requ...@lists.sourceforge.net wrote: > Message: 1 > Date: Sat, 8 Feb 2014 17:29:16 -0800 > From: "garyr" > Subject

[Matplotlib-users] grouped barchart categories

2014-02-09 Thread Sivaram Neelakantan
I'd appreciate some pointers on how to get a barchart of the following --8<---cut here---start->8--- date|name|empid|app|subapp|hours 20140101|A|0001|IIC|I1|2.5 20140101|A|0001|IIC|I2|3 20140101|A|0001|IIC|I3|4 20140101|A|0001|CAR|C1|2.5 20140101|A|0001|CAR|C2|3

[Matplotlib-users] Converting matplotlib graphs to Plotly: D3 style graphs, online

2014-02-09 Thread Matt Sundquist
Hey matplotlib users, Hi, I'm with Plotly . We thought we'd let you know you can convert matplotlib code to Plotly graphs and our Python API to make interactive, online graphs in Plotly. Your graphs are styled with D3, in the browser, and store your data too. Once y

Re: [Matplotlib-users] twinx and grid

2014-02-09 Thread Goyo
2014-02-09 2:29 GMT+01:00 garyr : > The script below labels both the left and right x-axes and shows a grid. Is > there a way to force the horizontal grid lines to line up with the tic marks > on > the left axis (ax1)? > > import numpy as np > import matplotlib.pyplot as plt > fig = plt.figure() >