泡泡情节怎么办?

时间:2013-01-20 16:37:06

标签: matlab plot

我已经搜索了许多方法来制作泡泡图 Mathematica ,但没有值得的结果,我发现的所有内容都是使用变体标记尺寸进行绘图,其中因为标记大小值有限,所以不是一个好的解决方案。

无论如何在 Matlab 中做泡沫图,如下图 Mathematica


Bubble plot image

1 个答案:

答案 0 :(得分:8)

我看不出scatter出了什么问题。例如:

x = 80 * randn(1, 30); 
y = 80 * randn(size(x));
r = randi(1500, size(x));
c = randi(10, size(x));
scatter(x, y, r, c, 'filled', 'MarkerEdgeColor', 'k')

这让我得到以下情节:

enter image description here

如您所见,此图显示了非常大和非常小的圆圈。