Hi all,
I am working on a correlation chart with pyplot for a monitoring web
tool. The plot is looking good, but only the strange resolution of axes
disturbs the view.
In a simple correlation plot, e.g. I want to compare two temperature
sensors, I expect a line who divides the picture in two
On Mon, Mar 25, 2013 at 11:06 AM, Miriam Degginger wrote:
> Hi all,
>
> I am working on a correlation chart with pyplot for a monitoring web tool.
> The plot is looking good, but only the strange resolution of axes disturbs
> the view.
>
> In a simple correlation plot, e.g. I want to compare two
Hi Miriam,
This case is a simple one for setting the axis ratios. You want to set
the aspect ratio to equal:
gca().set_aspect('equal')
after making your plot
Jon
On Mon, 2013-03-25 at 16:06 +0100, Miriam Degginger wrote:
> Hi all,
>
> I am working on a correlation chart with pyplot for a monit
Hi Jon,
yes, this is what I am looking for. Now, the chart is like I've expected.
Thank you all! (...also for the quick response!)
Miriam D.
On 25/03/13 17:00, Jonathan Slavin wrote:
> Hi Miriam,
>
> This case is a simple one for setting the axis ratios. You want to set
> the aspect ratio to