matplotlib.pyplot.
figure
(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True, FigureClass=<class 'matplotlib.figure.Figure'>, clear=False, \*\*kwargs)[source]¶
Create a new figure.
Parameters:If not provided, a new figure will be created, and the figure number will be incremented. The figure objects holds this number in a number
attribute. If num is provided, and a figure with this id already exists, make it active, and returns a reference to it. If this figure does not exists, create it and returns it. If num is a string, the window title will be set to this figure's num.
width, height in inches. If not provided, defaults to rcParams["figure.figsize"]
(default: [6.4, 4.8]) = [6.4, 4.8]
.
resolution of the figure. If not provided, defaults to rcParams["figure.dpi"]
(default: 100.0) = 100
.
the background color. If not provided, defaults to rcParams["figure.facecolor"]
(default: 'white') = 'w'
.
the border color. If not provided, defaults to rcParams["figure.edgecolor"]
(default: 'white') = 'w'
.
If False, suppress drawing the figure frame.
Figure
Optionally use a custom Figure
instance.
If True and the figure already exists, then it is cleared.
Figure
The Figure
instance returned will also be passed to new_figure_manager in the backends, which allows to hook custom Figure
classes into the pyplot interface. Additional kwargs will be passed to the Figure
init function.
Notes
If you are creating many figures, make sure you explicitly call pyplot.close
on the figures you are not using, because this will enable pyplot to properly clean up the memory.
rcParams
defines the default values, which can be modified in the matplotlibrc file.
matplotlib.pyplot.figure
¶
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4