colour map scatter with multiple groups / variables
1 次查看(过去 30 天)
显示 更早的评论
I have code to produce a coloured scatter. Figure 1 and two are separate variables that I would like to plot on the same axis. However when I try to do this (figure 3), the colour gradients change so that they are not considered per variable, but all together. Happy to consider other options that create a similar visual effect.
I have 14 variables in total that I want to plot in horizontal lines, with the colour of each marker representing the magnitude of the value. X axis must bet 0-100, represents normalised time. I'll paste below what I have used to create the images.
xData = 1:101 v = zeros(1,101); v(:) = 1; yData = v % random number between 1 and 2 cVect = MandARW(1:101,1); colormap jet hScat = scatter(xData, yData, 100, cVect, 'Filled', 's') hcbar = colorbar xlim([1 100]) %caxis([1 2])
figure(2)
xData = 1:101
v = zeros(1,101);
v(:) = 2;
yData = v % random number between 1 and 2
cVect = MandARW(1:101,2);
colormap jet
hScat = scatter(xData, yData, 100, cVect, 'Filled', 's')
hcbar = colorbar
xlim([1 100])
%ylim ([0 2])
figure(3)
xData = 1:101
v = zeros(1,101);
v(:) = 1;
yData = v % random number between 1 and 2
cVect = MandARW(1:101,1);
colormap jet
hScat = scatter(xData, yData, 100, cVect, 'Filled', 's')
hcbar = colorbar
xlim([1 100])
%caxis([1 2])
hold on
xData = 1:101
v = zeros(1,101);
v(:) = 2;
yData = v % random number between 1 and 2
cVect = MandARW(1:101,2);
colormap jet
hScat = scatter(xData, yData, 100, cVect, 'Filled', 's')
hcbar = colorbar
xlim([1 100])
%ylim ([0 2])
2 个评论
采纳的回答
jonas
2018-10-20
编辑:jonas
2018-10-20
I would probably just create a new axes for each new scatter object. Each object then scales automatically and the same method works for other objects such as surfaces. Example:
x = linspace(0,2*pi,100); y = zeros(size(x)) z1 = sin(x); z2 = sin(x).*2; z3 = sin(x).*-2;
ax(1) = axes('color','none');hold on scatter(x,y,[],z1,'filled')
ax(2) = axes('color','none','xcolor','none','ycolor','none');hold on scatter(x,y+1,[],z2,'filled')
ax(3) = axes('color','none','xcolor','none','ycolor','none');hold on scatter(x,y+2,[],z3,'filled')
linkaxes(ax,'xy')
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Blue 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!