Module pandas_profiling.report.presentation.flavours.html.frequency_table

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


class HTMLFrequencyTable(FrequencyTable):
    def render(self):
        return templates.template("frequency_table.html").render(
            rows=self.content["rows"]
        )

Classes

class HTMLFrequencyTable (rows, **kwargs)

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

Expand source code
class HTMLFrequencyTable(FrequencyTable):
    def render(self):
        return templates.template("frequency_table.html").render(
            rows=self.content["rows"]
        )

Ancestors

Methods

def render(self)
Expand source code
def render(self):
    return templates.template("frequency_table.html").render(
        rows=self.content["rows"]
    )