Styler.render()
pandas.formats.style.Styler.render
-
Styler.render()
-
Render the built up styles to HTML
New in version 0.17.1.
Returns: rendered: str
the rendered HTML
Notes
Styler
objects have defined the_repr_html_
method which automatically callsself.render()
when it’s the last item in a Notebook cell. When callingStyler.render()
directly, wrap the result inIPython.display.HTML
to view the rendered HTML in the notebook.