Re: [Matplotlib-users] Fwd: zoomed in detail box

2012-09-12 Thread Jae-Joon Lee
Your code works as expected in my side. So, changing (0.5, 0.5) to something like (0.6, 0.5) has no effect in your side? Hmm, what is you matplotlib version? Maybe this is a bug in old version of matplotlib. Regards, -JJ On Wed, Sep 12, 2012 at 6:16 PM, darkside wrote: > Thank you for your he

Re: [Matplotlib-users] Fwd: zoomed in detail box

2012-09-12 Thread darkside
Thank you for your help. A simple example that doesn't work for me is: import pylab as p import numpy as np from mpl_toolkits.axes_grid.inset_locator import zoomed_inset_axes from mpl_toolkits.axes_grid.inset_locator import mark_inset from mpl_toolkits.axes

Re: [Matplotlib-users] Fwd: zoomed in detail box

2012-09-04 Thread Jae-Joon Lee
On Mon, Aug 20, 2012 at 10:50 PM, darkside wrote: > I am using zoomed_inset_axes, but the default position overlaps the yticks > and the parent axe ticks, so I am trying: > axins = zoomed_inset_axes(ax, > 3,bbox_to_anchor(0.5,1),bbox_transform=ax.figure.transFigure, loc=2) This is supposed to wor

Re: [Matplotlib-users] Fwd: zoomed in detail box

2012-08-20 Thread darkside
Thank you for your help, but I have already read this link. I am using zoomed_inset_axes, but the default position overlaps the yticks and the parent axe ticks, so I am trying: axins = zoomed_inset_axes(ax, 3,bbox_to_anchor(0.5,1),bbox_transform=ax.figure.transFigure, loc=2) but it doesn't work.

Re: [Matplotlib-users] Fwd: zoomed in detail box

2012-08-09 Thread Benjamin Root
On Wed, Aug 8, 2012 at 7:03 AM, darkside wrote: > > > -- Forwarded message -- > From: darkside > Date: 2012/8/2 > Subject: Re: [Matplotlib-users] zoomed in detail box > To: Jae-Joon Lee > > > Hi everyone! > > I'm also trying to do a detailed zoomed area of my plot, but I can't >

[Matplotlib-users] Fwd: zoomed in detail box

2012-08-08 Thread darkside
-- Forwarded message -- From: darkside Date: 2012/8/2 Subject: Re: [Matplotlib-users] zoomed in detail box To: Jae-Joon Lee Hi everyone! I'm also trying to do a detailed zoomed area of my plot, but I can't manage to put the box in the position I want, bbox_to_anchor didn't work