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

950 次查看(过去 30 天)
How to use filled circles (dots) instead of empty circles in scatter plots?

回答(1 个)

Thorsten
Thorsten 2015-5-26
scatter(rand(1,10), rand(1,10), 'o', 'MarkerFaceColor', 'b')
  5 个评论
Mike Garrity
Mike Garrity 2015-5-27
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by