Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Closed
Labels
Description
It is possible to create a figure with astring "number":figure(num="Charts")
, which is used as the window title (if any).
This string number is even recognized bypyplot.subplots(…, num="Charts")
: it does recover the original figure and axes.
However,pyplot.fignum_exists("Chart")
returns False.
So, part of Matplotlib knows that a figure was created (and is open) with a certain string "number" (subplots()
,…), while another part of Matplotlib doesn't (fignum_exists()
). It would be useful iffignum_exists()
was aware of figurestring numbers too.