(xaxis_key, metric='Test/MAE', ax=None, show: bool = True, **kwargs)
| 120 | |
| 121 | |
| 122 | def plot_groups(xaxis_key, metric='Test/MAE', ax=None, show: bool = True, **kwargs): |
| 123 | if not ax: |
| 124 | fig, ax = plt.subplots() # 1 |
| 125 | |
| 126 | for key, group in kwargs.items(): |
| 127 | group.plot(xaxis_key, metric, yerr='std', label=key, ax=ax) |
| 128 | |
| 129 | set_labels_and_ticks( |
| 130 | ax, xlabel='Used training points', ylabel=metric, show=show |
| 131 | ) |
| 132 | |
| 133 | |
| 134 | def height_errors(Ytrue: np.ndarray, preds: np.ndarray, height_ticks=None, |
nothing calls this directly
no test coverage detected