Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between plt.close() and plt.clf()

In matplotlib.pyplot, what is the difference between plt.clf() and plt.close()? Will they function the same way?

I am running a loop where at the end of each iteration I am producing a figure and saving the plot. On first couple tries the plot was retaining the old figures in every subsequent plot. I'm looking for, individual plots for each iteration without the old figures, does it matter which one I use? The calculation I'm running takes a very long time and it would be very time consuming to test it out.

like image 552
Joseph Clifford Avatar asked May 21 '13 03:05

Joseph Clifford


People also ask

What does PLT CLF () do in Python?

The clf() function in pyplot module of matplotlib library is used to clear the current figure.

What is PLT close?

plt. close() by itself closes the current figure. close(h), where h is a Figure instance, closes that figure. close(num) closes the figure with number=num. close(name), where name is a string, closes the figure with that label. close('all') closes all the figure windows.

What does PLT CLA do?

pyplot. cla() Function. The cla() function in pyplot module of matplotlib library is used to clear the current axes.


4 Answers

plt.close() will close the figure window entirely, where plt.clf() will just clear the figure - you can still paint another plot onto it.

It sounds like, for your needs, you should be preferring plt.clf(), or better yet keep a handle on the line objects themselves (they are returned in lists by plot calls) and use .set_data on those in subsequent iterations.

like image 121
wim Avatar answered Oct 14 '22 21:10

wim


I think it is worth mentioning that plt.close() releases the memory, thus is preferred when generating and saving many figures in one run.

Using plt.clf() in such case will produce a warning after 20 plots (even if they are not going to be shown by plt.show()):

More than 20 figures have been opened. Figures created through the pyplot interface (matplotlib.pyplot.figure) are retained until explicitly closed and may consume too much memory.

like image 40
murnko Avatar answered Oct 14 '22 20:10

murnko


plt.clf() clears the entire current figure with all its axes, but leaves the window opened, such that it may be reused for other plots.

plt.close() closes a window, which will be the current window, if not specified otherwise.

like image 32
Biplob45 Avatar answered Oct 14 '22 21:10

Biplob45


There is a slight difference between the two functions.

plt.close() - It altogether plots the graph in seperate windows,releasing memory,retaining each window for view.

plt.clf() - We can say,it displays the graph in the same window one after other

For illustration, I have plotted two graphs with paramters year and views on X axis and Y axis each. Initially I have used closed function.it displayed the graphs in two seperate windows…

Afterwords, when I run the program with clf() it clears the graph and displays next one in same window i.e figure 1. Here is the code snippet -

    import matplotlib.pyplot as plt
    year = [2001,2002,2003,2004]
    Views= [12000,14000,16000,18000]
    Views2 = [15000,1800,24000,84000]
    plt.plot(year,Views)
    plt.show()
    plt.clf()
    plt.plot(year,Views2)
    plt.show()
    plt.clf()

image 1 with close function


image 2 with close function


image 1 with clf function


image 2 with clf function


like image 33
Aditi Avatar answered Oct 14 '22 19:10

Aditi