Module pandas_profiling.report.presentation.flavours.widget.overview

Expand source code
from ipywidgets import widgets

from pandas_profiling.report.presentation.core.overview import Overview
from pandas_profiling.report.presentation.flavours.html import templates


class WidgetOverview(Overview):
    def render(self):
        return widgets.HTML(templates.template("info.html").render(**self.content))

Classes

class WidgetOverview (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 WidgetOverview(Overview):
    def render(self):
        return widgets.HTML(templates.template("info.html").render(**self.content))

Ancestors

Methods

def render(self)
Expand source code
def render(self):
    return widgets.HTML(templates.template("info.html").render(**self.content))