Skip to content

Commit 44ed8f4

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/user_guide/dsintro.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ greater than 5, calculate the ratio, and plot:
577577
SepalRatio=lambda x: x.SepalWidth / x.SepalLength,
578578
PetalRatio=lambda x: x.PetalWidth / x.PetalLength,
579579
)
580-
.plot(kind="scatter", x="SepalRatio", y="PetalRatio")
580+
.plot(kind="scatter", x="SepalRatio", y="PetalRatio", s = 20)
581581
)
582582
583583
Since a function is passed in, the function is computed on the DataFrame

0 commit comments

Comments
 (0)