Plot the given data to the given `ax`.
(
self,
ax: Axes,
file_key: Tuple[str, ...],
column_key: Tuple[str, ...],
row_key: Tuple[str, ...],
line_by: GroupingSpec,
metrics_df: pd.DataFrame,
metadata: Collection[BenchmarkMetadata],
)
| 44 | |
| 45 | @abstractmethod |
| 46 | def plot( |
| 47 | self, |
| 48 | ax: Axes, |
| 49 | file_key: Tuple[str, ...], |
| 50 | column_key: Tuple[str, ...], |
| 51 | row_key: Tuple[str, ...], |
| 52 | line_by: GroupingSpec, |
| 53 | metrics_df: pd.DataFrame, |
| 54 | metadata: Collection[BenchmarkMetadata], |
| 55 | ) -> None: |
| 56 | """ Plot the given data to the given `ax`. """ |
| 57 | |
| 58 | |
| 59 | PLOTTERS: Registry[Plotter] = Registry() |
no outgoing calls