On Wed, Jul 23, 2008 at 9:06 AM, Jonathan Hayward http://JonathansCorner.com
>>  fig = figure((8,6), dpi=100)  # 800x600
>
> When I tried placing that line in a couple of places, I got an error:

Sorry, my fault, you need the keyword argument figsize:


In [1]: import matplotlib.pyplot as plt

In [2]: fig = plt.figure(figsize=(8,6), dpi=100)  # 800x600

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to