Module pandas_profiling.report.presentation.flavours.html.frequency_table_small

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


class HTMLFrequencyTableSmall(FrequencyTableSmall):
    def render(self):
        return templates.template("frequency_table_small.html").render(
            rows=self.content
        )

Classes

class HTMLFrequencyTableSmall (content, **kwargs)

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

Expand source code
class HTMLFrequencyTableSmall(FrequencyTableSmall):
    def render(self):
        return templates.template("frequency_table_small.html").render(
            rows=self.content
        )

Ancestors

Methods

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