Module pandas_profiling.report.presentation.flavours.qt.frequency_table_small
Expand source code
from PyQt5.QtWidgets import QPushButton
from pandas_profiling.report.presentation.core import FrequencyTableSmall
class QtFrequencyTableSmall(FrequencyTableSmall):
def render(self):
return QPushButton("Small Frequency Table")
Classes
class QtFrequencyTableSmall (content, **kwargs)
-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class QtFrequencyTableSmall(FrequencyTableSmall): def render(self): return QPushButton("Small Frequency Table")
Ancestors
Methods
def render(self)
-
Expand source code
def render(self): return QPushButton("Small Frequency Table")