(
y: np.ndarray, y_predt: np.ndarray, name: str, ax: matplotlib.axes.Axes
)
| 28 | |
| 29 | |
| 30 | def plot_predt( |
| 31 | y: np.ndarray, y_predt: np.ndarray, name: str, ax: matplotlib.axes.Axes |
| 32 | ) -> None: |
| 33 | s = 25 |
| 34 | ax.scatter(y[:, 0], y[:, 1], c="navy", s=s, edgecolor="black", label=name) |
| 35 | ax.scatter(y_predt[:, 0], y_predt[:, 1], c="cornflowerblue", s=s, edgecolor="black") |
| 36 | ax.legend() |
| 37 | |
| 38 | |
| 39 | def gen_circle() -> Tuple[np.ndarray, np.ndarray]: |
no outgoing calls
no test coverage detected