我正在尝试制作一个二维矢量图(2D Plot)。但我不希望所有的数据点在图上都有相同的颜色。每个数据点对应一个组。我希望每组数据点都有不同的颜色。
class=[1 3 2 5 2 5 1 3 3 4 2 2 2]
表示每个数据点属于哪个组
X=[x1,y1;x2,y2;x3,y3;.....]
这些数据点的数量与类向量中的元素数量相同。
现在我想根据颜色绘制这些颜色。
答案 0 :(得分:4)
您可以使用SCATTER轻松绘制不同颜色的数据。顺便说一句,我同意@gnovice使用classID
代替class
。
scatter(X(:,1),X(:,2),6,classID); %# the 6 sets the size of the marker.
修改强>
如果要显示图例,则必须使用@yuk或@gnovice解决方案。
GSCATTER
%# plot data and capture handles to the points
hh=gscatter(randn(100,1),randn(100,1),randi(3,100,1),[],[],[],'on');
%# hh has an entry for each of the colored groups. Set the DisplayName property of each of them
set(hh(1),'DisplayName','some group')
PLOT
%# create some data
X = randn(100,2);
classID = randi(2,100,1);
classNames = {'some group','some other group'}; %# one name per class
colors = hsv(2); %# use the hsv color map, have a color per class
%# open a figure and plot
figure
hold on
for i=1:2 %# there are two classes
id = classID == i;
plot(X(id,1),X(id,2),'.','Color',colors(i,:),'DisplayName',classNames{i})
end
legend('show')
如果您有统计工具箱,也可以查看grouped data。
答案 1 :(得分:2)
首先,由于CLASS是一个内置函数,我会改为命名你的向量classID
。
然后,对于classID
中的每个值,您可以执行以下操作:
index = (classID == 1); %# Logical index of where classID is 1
plot(X(index,1),X(index,2),'r.'); %# Plot all classID 1 values as a red dot
hold on; %# Add to the existing plot
答案 2 :(得分:2)
另请参阅Statistics Toolbox中的GSCATTER函数。您只需为每个组指定一次颜色,大小和符号。
gscatter(X(:,1),X(:,2),classID,'bgrcm');
或只是
gscatter(X(:,1),X(:,2),classID); %# groups by color by default