Compare:
VISUALISE species AS x, bill_len AS y FROM ggsql:penguins
DRAW boxplot
DRAW point
with jittered points;
VISUALISE species AS x, bill_len AS y FROM ggsql:penguins
DRAW boxplot
DRAW point SETTING position => 'jitter'
And you'll find that the boxplots have become more narrow than you'd expect in the 2nd case.
Compare:
with jittered points;
And you'll find that the boxplots have become more narrow than you'd expect in the 2nd case.