Module pandas_profiling.report.presentation.flavours.html.dataset

Expand source code
from pandas_profiling.report.presentation.core import Dataset
from pandas_profiling.report.presentation.flavours.html import templates


class HTMLDataset(Dataset):
    def render(self):
        return templates.template("overview/overview.html").render(**self.content)

Classes

class HTMLDataset (package, date_start, date_end, values, messages, collapse_warnings, variables, **kwargs)

Helper class that provides a standard way to create an ABC using inheritance.

Expand source code
class HTMLDataset(Dataset):
    def render(self):
        return templates.template("overview/overview.html").render(**self.content)

Ancestors

Methods

def render(self)
Expand source code
def render(self):
    return templates.template("overview/overview.html").render(**self.content)