我可以在相同的密度直方图(mathematica)中绘制2组不同的数据({x1,y1}和{x2,y2})吗?
我不知道由于颜色叠加是否可能。
答案 0 :(得分:0)
这样的事情怎么样?
a = SmoothDensityHistogram[
RandomVariate[BinormalDistribution[0.3], 10], Mesh -> 3,
MeshStyle -> Red, ColorFunction -> None];
b = SmoothDensityHistogram[
RandomVariate[BinormalDistribution[0.6], 10], Mesh -> 3,
MeshStyle -> Blue, ColorFunction -> None];
Show[
a /. GrayLevel[_] -> Opacity[0],
b /. GrayLevel[_] -> Opacity[0],
ImageSize -> 300]