How to use filled circles (dots) instead of empty circles in scatter plots?

920 views (last 30 days)
How to use filled circles (dots) instead of empty circles in scatter plots?

Answers (1)

Thorsten
Thorsten on 26 May 2015
scatter(rand(1,10), rand(1,10), 'o', 'MarkerFaceColor', 'b')
  5 Comments
Mike Garrity
Mike Garrity on 27 May 2015
The markers in scatter actually don't follow quite the same rules as the ones on the other objects.
For scatter, the units are always points squared. That means that (if your monitor is calibrated correctly) the following will produce markers which are 1 inch in diameter.
scatter(1:10, 1:10, 5184)
That's because there are 72 points in an inch, and 5,184 is 72^2.
The reason that scatter is special is because the size of the marker is representing data, rather than just being cosmetic. For that reason it was decided that it should scale with the area and not be sensitive to units.
However, as the thread Joseph referred to shows, the actual markers don't all agree on what the diameter means. This was a cosmetic adjustment that was originally done to make lines with different markers look good together when the MarkerSize properties were the same. But since scatter uses the same marker styles, it inherits this odd quirk that makes the sizing less predictable than it should be.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!