vote up 2 vote down star

The following code plots two .ps files, but the second one contains both lines.

import matplotlib
import matplotlib.pyplot as plt
import matplotlib.mlab as mlab

plt.subplot(111)
x = [1,10]
y = [30, 1000]
plt.loglog(x, y, basex=10, basey=10, ls="-")
plt.savefig("first.ps")


plt.subplot(111)
x = [10,100]
y = [10, 10000]
plt.loglog(x, y, basex=10, basey=10, ls="-")
plt.savefig("second.ps")

How can I tell matplotlib to start afresh for the second plot ?

flag

77% accept rate
as a point of style, there's no need to use subplot when you only have one plot per figure. – Autoplectic Apr 12 at 20:12

3 Answers

vote up 5 vote down check

you can use figure to create a new plot, for example, or use close after the first first plot.

link|flag
Great! Thanks! I find it difficult to find what I need in the current documentation format. The pyplot page is very long, and I was not able to see the entry for close() while scrolling. I was searching for something like clean() clear() or flush(). – Stefano Borini Apr 12 at 14:47
The pyplot tutorial does mention clf() in the "multiple figures" section. Note that if you just create a new plot with figure() without closing the old one with close() (even if you close the GUI window), pyplot retains a reference to your old figure, which may look like a memory leak. – Jouni K. Seppänen Apr 12 at 20:03
vote up 5 vote down

There is a clear figure command...

plt.clf()

Should do it for you.

link|flag
vote up 1 vote down

As stated from David Cournapeau, use figure().

import matplotlib
import matplotlib.pyplot as plt
import matplotlib.mlab as mlab

plt.figure()
x = [1,10]
y = [30, 1000]
plt.loglog(x, y, basex=10, basey=10, ls="-")
plt.savefig("first.ps")


plt.figure()
x = [10,100]
y = [10, 10000]
plt.loglog(x, y, basex=10, basey=10, ls="-")
plt.savefig("second.ps")

Or subplot(121) / subplot(122) for the same plot, different position.

import matplotlib
import matplotlib.pyplot as plt
import matplotlib.mlab as mlab

plt.subplot(121)
x = [1,10]
y = [30, 1000]
plt.loglog(x, y, basex=10, basey=10, ls="-")

plt.subplot(122)
x = [10,100]
y = [10, 10000]
plt.loglog(x, y, basex=10, basey=10, ls="-")
plt.savefig("second.ps")
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.