Re: [Matplotlib-users] how to create interactive plots in jupyter python3 notebook?

2016-02-29 Thread Bilheux, Jean-Christophe
Hi all, Just to let you know I found this conversation and tips very useful… I just wish there was a nice complete tutorial somewhere (web, book) about everything there is to know about jupyter, widgets….etc. I started a github repo myself where I try to gather tips here and there (like today

Re: [Matplotlib-users] MultiCursor messes with xlim and ylim autoscaling

2016-01-20 Thread Bilheux, Jean-Christophe
HI all, I wanted to help (for a change) but running the script on mac (with the multi cursor code commented out), I got the following error. If anyone can figure out why ! File "/Users/j35/anaconda/lib/python3.4/site-packages/matplotlib/widgets.py", line 1046, in clear

Re: [Matplotlib-users] Turning grid on

2015-06-03 Thread Bilheux, Jean-Christophe
Works for me too using plt.grid() but I can't find the way to customize the grid (size, type…)? trying http://matplotlib.org/examples/pylab_examples/axes_props.html doesn't do anything for me ! On Jun 3, 2015, at 9:39 AM, step...@theboulets.net wrote: But this works: import

Re: [Matplotlib-users] Turning grid on

2015-06-01 Thread Bilheux, Jean-Christophe
Here is what I see with a couple of things modified ? did you expect something else ? from matplotlib.backends.backend_pdf import PdfPages import matplotlib.pyplot as plt import numpy as np fig = plt.figure() ax = fig.add_subplot(1,1,1) x = np.linspace(0,10,50) y = np.sin(x) with