DWM - Assignment 2 - July2024
DWM - Assignment 2 - July2024
Q.1 Explain K-medoids algorithm? Apply K-means clustering algorithm for the following data set with two
clusters.
Point Coordinates
A1 (2, 6)
A2 (3, 8)
A3 (4, 7)
A4 (6, 2)
A5 (6, 4)
A6 (7, 3)
A7 (7,4)
A8 (8, 5)
A9 (7, 6)
A10 (3, 4)
Q.2 Suppose that the data mining task is to cluster the following points into 3 clusters. A1(2,10),A2(2,5),
A3(8,4),A4(5,8),A5(7,5),A6(6,4), A7(1,2), A8(4,9). The distance function is Euclidean distance. Suppose initially
we assign A1,A4 and A7 as the center of each cluster respectively. Use the K-means algorithm to show only
a. The three cluster centers after the first round of execution and
Q.3 Show the dendrogram created by the Single link,complete link and average link clustering algorithm for the
given distance matrix
1 2 3 4 5
1 0
2 2 0
3 6 3 0
4 10 9 7 0
5 9 8 5 4 0
.
TID Items_bought
T100 { M,O,N,K,E,Y}
T200 { D,O,N,K,E,Y}
T300 { M,A,K,E}
T400 { M,U,C,K,Y}
T500 { C,O,O,K,I,E}
Q.6 What is Association? Apply apriori algorithm on the following dataset to find strong association rules.
Minimum support threshold (s=33.33%) and minimum confident threshold (c=60%)
TID Items
Q.7 What is Web Structure Mining? Explain Page Rank Technique in detail with example.
Q.8 Write short note on: a. Multilevel Association Rule Mining b. Crawlers c. FP-Tree
Q.9 Explain K-means clustering algorithm? Apply K-means clustering algorithm for the following data set with
two clusters.