Module pandas_profiling.report.presentation.flavours.qt.overview
Expand source code
from PyQt5.QtWidgets import QPushButton
from pandas_profiling.report.presentation.core.overview import Overview
class QtOverview(Overview):
def render(self):
return QPushButton("PyQt5 button")
Classes
class QtOverview (anchor_id, var_name, var_type, warnings, **kwargs)
-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class QtOverview(Overview): def render(self): return QPushButton("PyQt5 button")
Ancestors
- Overview
- ItemRenderer
- Renderable
- abc.ABC
Methods
def render(self)
-
Expand source code
def render(self): return QPushButton("PyQt5 button")