Python如何控制图形中绘制的点的大小
比如我有如下绘制点的代码: ax.scatter([31], input_data_labels_plot.numpy(), colorgreen, labelTrue Label, zorder2) ax.scatter([31], best_pred_plot.numpy(), colorred, labelPredicted Label, zorder2) 你可以通过在 scatter 方法中添加 s 参数来控制点…
2026-02-01