Formation of higher dimensional subspace clusters

1 次查看(过去 30 天)
How to find higher dimensional clusters are formed by connecting 2-dimensional subspace clusters sharing common objects. If an outlier object is by chance becomes part of a one dimensional cluster, it will be absent in clusters present in remaining dimensions and its support will be below attribute_threshold. Such outlier objects get eliminated in this step. The attributes containing 2-dimensional clusters are arranged in non-decreasing order on the basis of percentage of coverage of the data items belonging to the clusters. The objects in a 2-dimensional cluster in an attribute are connected to objects in next attribute in the sequence if they contain common object indices to form higher dimensional subspace clusters. And find the count of dimensions in a subspace cluster is less than attribute_threshold.The default attribute threshold is set as 5.I want to do that in Z.
clc;
clear;
data=xlsread('Glassxl.xlsx');
asc=sort(data);
minpts=4;
epsilon=2;
tic
idx=dbscan(asc,epsilon,minpts);
figure(1)
gscatter(asc(:,1),asc(:,2),idx);
title('DBSCAN Using Euclidean Distance Metric')
Z = linkage(idx,'ward');
How can I find the and merge those clusters that share a common object.How can I do that please help me.

采纳的回答

Hiro Yoshino
Hiro Yoshino 2020-1-28
I can be your help though, I don't quite get you.
Let me ask you: do you have a good understanding on DBSCAN in the first place?
  8 个评论
Silpa K
Silpa K 2020-1-30
Thank you sir.Is it possible to visualize the outliers in the data as a graph.
Hiro Yoshino
Hiro Yoshino 2020-1-30
Good to know.
Please acept the answer and close this question. Good luck.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by