资源简介

计算聚类算法评价指标之一:Rand Index(需要两个类标向量) 根据类标绘制数据散布图(2D or 3D)

资源截图

代码片段和文件信息

function drawdataset(datasetlabel)
[nm] = size(dataset);
if nargin == 1
    label = ones(1n);
end
colorNumber = max(label);
colorMode = char(‘r+‘‘b+‘‘g+‘‘y+‘‘ro‘‘bo‘‘go‘‘yo‘‘rx‘‘bx‘‘gx‘‘yx‘‘r.‘‘b.‘‘g.‘‘y.‘);

for i = 1:colorNumber
    colorAndMode = colorMode(i:);
    theNum = find(label==i);
switch m
    case 2
        plot(dataset(theNum1)dataset(theNum2)colorAndMode);
    case 3
        plot3(dataset(theNum1)dataset(theNum2)dataset(theNum3)colorAndMode);
    otherwise
        error(‘cant draw‘);

end
hold on
end
end



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         581  2013-05-20 15:25  drawdataset.m
     文件         572  2013-02-20 18:38  RandIndex.m

评论

共有 条评论