matplotlib 3.5.1

NotesBackRef
ioff()

See .pyplot.isinteractive for more details.

Notes

For a temporary change, this can be used as a context manager:

# if interactive mode is on
# then figures will be shown on creation
plt.ion()
# This figure will be shown immediately
fig = plt.figure()

with plt.ioff():
    # interactive mode will be off
    # figures will not automatically be shown
    fig2 = plt.figure()
    # ...

To enable usage as a context manager, this function returns an _IoffContext object. The return value is not intended to be stored or accessed by the user.

Disable interactive mode.

See Also

ion

Enable interactive mode.

isinteractive

Whether interactive mode is enabled.

pause

Show all figures, and block for a time.

show

Show all figures (and maybe block).

Examples

See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

matplotlib.pyplot.show matplotlib.pyplot.ion matplotlib.pyplot._IoffContext matplotlib.pyplot.isinteractive matplotlib.pyplot.plotting

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /matplotlib/pyplot.py#453
type: <class 'function'>
Commit: