[Matplotlib-users] Using matplotlib with Django

2014-03-17 Thread Aarthi Reddy
Hi, I am very new to python, so sorry if the question is basic. I am also very new to Django. I followed the instructions on https://docs.djangoproject.com/en/1.6/intro/tutorial01/ through tutorial 4 to set up a sample webpage and play around with it. I would like to generate plots via matplotli

Re: [Matplotlib-users] PySide backend

2014-03-17 Thread Ryan May
On Mon, Mar 17, 2014 at 4:11 PM, Christophe Bal wrote: > Hello, > does matplotlib can use a PySide backend ? > > I ask this question because PySide is installed with Anaconda. > The Qt4 backend can use either PySide or PyQt. It should use either if they're installed. Ryan -- Ryan May Graduate

[Matplotlib-users] PySide backend

2014-03-17 Thread Christophe Bal
Hello, does matplotlib can use a PySide backend ? I ask this question because PySide is installed with Anaconda. Christophe BAL -- Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive ne

Re: [Matplotlib-users] matplolib imshow contour/heatmap

2014-03-17 Thread sweep
Hi Oliver, thanks for the reply. I know about contourf and have tried it before but couldn't get it working, I don't really understand the data objects in python (I come from a PHP background) i.e what a numpy object is and so on, so I was hoping someone with more experience in this could help me o

Re: [Matplotlib-users] Left-aligned and centered title

2014-03-17 Thread Eric Firing
On 2014/03/17 3:31 AM, Florian M. Wagner wrote: > Dear users, > > I would like label my subplots with a horizontally left-aligned letter > (wanted by the journal) and the normal, centered axes title, which > should both be vertically in line. The following example does not work: > > from matplo

Re: [Matplotlib-users] Left-aligned and centered title

2014-03-17 Thread Sterling Smith
Florian, I think that you need to add the ax.titleOffsetTrans to the ax.transAxes transformation. ax.text(0,pos[1],letter,transform=ax.transAxes+ax.titleOffsetTrans,va=va) -Sterling On Mar 17, 2014, at 6:31AM, Florian M. Wagner wrote: > Dear users, > > I would like label my subplots with a h

[Matplotlib-users] Left-aligned and centered title

2014-03-17 Thread Florian M. Wagner
Dear users, I would like label my subplots with a horizontally left-aligned letter (wanted by the journal) and the normal, centered axes title, which should both be vertically in line. The following example does not work: from matplotlib import pyplot as plt import numpy as np fig,