MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / _repr_html_

Method _repr_html_

lib/matplotlib/animation.py:1397–1403  ·  view source on GitHub ↗

IPython display hook for rendering.

(self)

Source from the content-addressed store, hash-verified

1395 return self._html_representation
1396
1397 def _repr_html_(self):
1398 """IPython display hook for rendering."""
1399 fmt = mpl.rcParams['animation.html']
1400 if fmt == 'html5':
1401 return self.to_html5_video()
1402 elif fmt == 'jshtml':
1403 return self.to_jshtml()
1404
1405 def pause(self):
1406 """Pause the animation."""

Callers

nothing calls this directly

Calls 2

to_html5_videoMethod · 0.95
to_jshtmlMethod · 0.95

Tested by

no test coverage detected