Transparency in scatter plot
조회 수: 74 (최근 30일)
이전 댓글 표시
Say I have two vectors A and B and would like to have a scatter plot of them, however the transparency of each marker must vary according to corresponding values in a third vector C. The transparency for the smallest value of C should be 50% and for the largest value of C should be fully opaque.
Everything I've tried has rendered all points fully transparent as if they are not being plotted at all. Thanks in advance.
댓글 수: 0
답변 (2개)
Walter Roberson
2024년 3월 1일
scatter(VectorOfX, VectorOfY, VectorOfPointSizes, VectorOfColor, ...
'MarkerFaceColor', 'flat', 'MarkerEdgeColor', 'flat', ...
'AlphaData', VectorOfAlpha)
Star Strider
2024년 3월 1일
편집: Star Strider
2024년 3월 1일
It would help to have representative data. I suspect the vector you are using as ‘C’ has very low positive values (perhaps on the order of 0.1 to 0.3 or something similar).
The documentation stares that the transparency vector has to be scaled to be between 0 and 1. This uses the rescale function to accomplish that, creating ‘Cr’ (‘C’ rescaled).
Try this —
N = 50;
A = randn(N,1);
B = randn(N,1);
C = randn(N,1);
Cr = rescale(C,0.5,1); % Scale To Correspond To 'MarkerFaceAlpha' Rnage of (0.5,1)
figure
hs = scatter(A, B, 200, C, 'p', 'filled');
s.AlphaData = Cr;
s.MArkerFaceAlpha = 'flat';
s.MarkerEdgeAlpha = 'flat';
colormap(turbo)
colorbar
Note that ‘C’ works normally to colour the markers, and ‘Cr’ varies their transparency within the allotted range.
EDIT — Corrected typographical errors.
.
댓글 수: 3
Frank Gibbons
2025년 9월 26일 19:24
That's what I see - no obvious alpha here: none of the overlapping stars shows anything "underneath" it, not even the teal ones, which are middle of the scale.
Star Strider
2025년 9월 26일 20:33
There were typographical errors in my earlier code that I just now caught.
The blue stars should be most transparent, and the red stars should be most opaque. In my corrected code, that is now apparent, especially the two stars at (-1.5,1.5) and the cluster near (-0.4,0.7).
Try this --
N = 100;
A = randn(N,1);
B = randn(N,1);
C = randn(N,1);
Cr = rescale(C,0.0,1); % Scale To Correspond To 'MarkerFaceAlpha' Rnage of (0.5,1)
figure
hs = scatter(A, B, 500, C, 'p', 'filled');
hs.AlphaData = Cr;
hs.MarkerFaceAlpha = 'flat';
hs.MarkerEdgeAlpha = 'flat';
colormap(turbo)
colorbar
.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!