Re: [Matplotlib-users] rcParams['figure.dpi'] has no effect?

2011-01-23 Thread Daniel Mader
Ah, thank you very much, that helped! It works nicely! Best regards, Daniel -- Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! Finally, a world-class log management solution at an even better

[Matplotlib-users] rcParams['figure.dpi'] has no effect?

2011-01-21 Thread Daniel Mader
Hi, I need to create a huge range of plots with need to fit into a report (OpenOffice or Word). In order to save the work of manual resizing them when dragged and dropped, I wanted to preset a correct figure size with a nice resolution: pylab.rcParams['figure.figsize'] = 5,4

Re: [Matplotlib-users] rcParams['figure.dpi'] has no effect?

2011-01-21 Thread Bala subramanian
Daniel, Did you try saving the figure with same dpi ?. Try the following. plt.savefig('name',dpi=300) On Fri, Jan 21, 2011 at 9:08 AM, Daniel Mader danielstefanma...@googlemail.com wrote: Hi, I need to create a huge range of plots with need to fit into a report (OpenOffice or Word). In

Re: [Matplotlib-users] rcParams['figure.dpi'] has no effect?

2011-01-21 Thread Paul Ivanov
Bala subramanian, on 2011-01-21 12:17, wrote: Daniel, Did you try saving the figure with same dpi ?. Try the following. plt.savefig('name',dpi=300) On Fri, Jan 21, 2011 at 9:08 AM, Daniel Mader danielstefanma...@googlemail.com wrote: Hi, I need to create a huge range of plots