Module pandas_profiling.report.presentation.flavours.html.overview
Expand source code
from pandas_profiling.report.presentation.core.overview import Overview
from pandas_profiling.report.presentation.flavours.html import templates
class HTMLOverview(Overview):
def render(self):
return templates.template("info.html").render(**self.content)
Classes
class HTMLOverview (anchor_id, var_name, var_type, warnings, **kwargs)
-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class HTMLOverview(Overview): def render(self): return templates.template("info.html").render(**self.content)
Ancestors
- Overview
- ItemRenderer
- Renderable
- abc.ABC
Methods
def render(self)
-
Expand source code
def render(self): return templates.template("info.html").render(**self.content)