Re: [Matplotlib-users] zoomed copy of axis for grid of subplots

2011-01-31 Thread johanngoetz
Thanks guys! This is exactly what I was looking for. The axes_grid1 toolkit works like a charm. I have attached a revised version of the example I had before with a few minor modifications and some descriptive text at the top. Is there a standard way for non-developers (i.e. users) to contribute

Re: [Matplotlib-users] zoomed copy of axis for grid of subplots

2011-01-30 Thread Jae-Joon Lee
Here is the axes_grid1 version. I only attach the *axins* part. It is not identical to your original example and have difference scales. -JJ ax1 = ax[ybins-1,1] from mpl_toolkits.axes_grid1.inset_locator import zoomed_inset_axes, \ mark_inset axins = zoomed_inset_axes(parent_axes=ax1, zoom

Re: [Matplotlib-users] zoomed copy of axis for grid of subplots

2011-01-30 Thread Benjamin Root
On Monday, January 24, 2011, johanngoetz wrote: > > Hello, > A common task I have is to histogram one variable of a multidimensional > dataset as a function of two (or more) variables. I have attached an example > which shows exactly what I would like to do. > > The problem I would like to solve i

[Matplotlib-users] zoomed copy of axis for grid of subplots

2011-01-25 Thread johanngoetz
Hello, A common task I have is to histogram one variable of a multidimensional dataset as a function of two (or more) variables. I have attached an example which shows exactly what I would like to do. The problem I would like to solve is the zoomed in x-axis which is the last part of the script a