Module pandas_profiling.report.presentation.flavours.qt.dataset
Expand source code
from PyQt5.QtWidgets import QPushButton
from pandas_profiling.report.presentation.core import Dataset
class QtDataset(Dataset):
def render(self):
return QPushButton("PyQt5 button")
Classes
class QtDataset (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 QtDataset(Dataset): def render(self): return QPushButton("PyQt5 button")
Ancestors
- Dataset
- ItemRenderer
- Renderable
- abc.ABC
Methods
def render(self)
-
Expand source code
def render(self): return QPushButton("PyQt5 button")