Skip to content

Commit 144557d

Browse files
feat(matplotlib): implement histogram-basic
Implements basic histogram visualization for matplotlib library. - Uses ax.hist() with 30 bins - Follows style guide: 4800x2700px, Python Blue color - Proper labels, title, and grid styling
1 parent 405c694 commit 144557d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plots/matplotlib/hist/histogram-basic/default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
ax.grid(True, alpha=0.3, axis="y")
2525

2626
plt.tight_layout()
27-
plt.savefig("plot.png", dpi=300, bbox_inches="tight")
27+
plt.savefig("plot.png", dpi=300)

0 commit comments

Comments
 (0)