Skip to content

Commit 2e62132

Browse files
tarsur909HollisHolmes
authored andcommitted
fix hardcoded scatter marker size issue #54204
1 parent 44ed8f4 commit 2e62132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/user_guide/visualization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ It is recommended to specify ``color`` and ``label`` keywords to distinguish eac
626626
627627
ax = df.plot.scatter(x="a", y="b", color="DarkBlue", label="Group 1")
628628
@savefig scatter_plot_repeated.png
629-
df.plot.scatter(x="c", y="d", color="DarkGreen", label="Group 2", ax=ax);
629+
df.plot.scatter(x="c", y="d", color="DarkGreen", label="Group 2", ax=ax, s = 20);
630630
631631
.. ipython:: python
632632
:suppress:

0 commit comments

Comments
 (0)