Module pandas_profiling.report.presentation.core.frequency_table_small
Expand source code
from typing import Any
from pandas_profiling.report.presentation.abstract.item_renderer import ItemRenderer
class FrequencyTableSmall(ItemRenderer):
def __init__(self, content, **kwargs):
super().__init__("frequency_table_small", content, **kwargs)
def __repr__(self):
return "FrequencyTableSmall"
def render(self) -> Any:
raise NotImplementedError()
Classes
class FrequencyTableSmall (content, **kwargs)
-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class FrequencyTableSmall(ItemRenderer): def __init__(self, content, **kwargs): super().__init__("frequency_table_small", content, **kwargs) def __repr__(self): return "FrequencyTableSmall" def render(self) -> Any: raise NotImplementedError()
Ancestors
- ItemRenderer
- Renderable
- abc.ABC
Subclasses
Methods
def render(self)
-
Expand source code
def render(self) -> Any: raise NotImplementedError()