Module pandas_profiling.report.presentation.flavours.qt.frequency_table

Expand source code
from PyQt5.QtWidgets import QPushButton

from pandas_profiling.report.presentation.core import FrequencyTable


class QtFrequencyTable(FrequencyTable):
    def render(self):
        return QPushButton("Frequency Table")

Classes

class QtFrequencyTable (rows, **kwargs)

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

Expand source code
class QtFrequencyTable(FrequencyTable):
    def render(self):
        return QPushButton("Frequency Table")

Ancestors

Methods

def render(self)
Expand source code
def render(self):
    return QPushButton("Frequency Table")