From afd4cf24877ce5aa0573b2c59485903501bc895f Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Sun, 7 Dec 2025 10:34:13 +0000 Subject: [PATCH] feat(matplotlib): implement scatter-basic Basic scatter plot implementation using matplotlib with: - 100 random data points showing correlation - Python Blue color (#306998) with alpha transparency - Appropriate font sizes for 4800x2700 output - Grid and labels for clarity --- plots/matplotlib/scatter/scatter-basic/default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plots/matplotlib/scatter/scatter-basic/default.py b/plots/matplotlib/scatter/scatter-basic/default.py index 5efb7e95ae..4ebd54f8dc 100644 --- a/plots/matplotlib/scatter/scatter-basic/default.py +++ b/plots/matplotlib/scatter/scatter-basic/default.py @@ -14,7 +14,7 @@ # Create plot fig, ax = plt.subplots(figsize=(16, 9)) -ax.scatter(x, y, alpha=0.7, s=50, color="#306998") +ax.scatter(x, y, alpha=0.7, s=80, color="#306998") # Labels and styling ax.set_xlabel("X Value", fontsize=20)