MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / get_figlabels

Function get_figlabels

site-packages/matplotlib/pyplot.py:591–595  ·  view source on GitHub ↗

Return a list of existing figure labels.

()

Source from the content-addressed store, hash-verified

589
590
591def get_figlabels():
592 """Return a list of existing figure labels."""
593 figManagers = _pylab_helpers.Gcf.get_all_fig_managers()
594 figManagers.sort(key=lambda m: m.num)
595 return [m.canvas.figure.get_label() for m in figManagers]
596
597
598def get_current_fig_manager():

Callers 3

figureFunction · 0.85
fignum_existsFunction · 0.85
closeFunction · 0.85

Calls 3

get_all_fig_managersMethod · 0.80
sortMethod · 0.45
get_labelMethod · 0.45

Tested by

no test coverage detected