0% found this document useful (0 votes)
136 views22 pages

DM + Kavitha

The document describes steps to cluster data using the DBSCAN algorithm in Weka: 1. Open the dbscan.arff file in Weka and select the DBSCAN clusterer. 2. Set the epsilon and minimum points parameters for DBSCAN. 3. Run the clustering algorithm on the data and view the cluster assignments, which identifies 2 clusters and 2 noise points.

Uploaded by

syam_5491983
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
136 views22 pages

DM + Kavitha

The document describes steps to cluster data using the DBSCAN algorithm in Weka: 1. Open the dbscan.arff file in Weka and select the DBSCAN clusterer. 2. Set the epsilon and minimum points parameters for DBSCAN. 3. Run the clustering algorithm on the data and view the cluster assignments, which identifies 2 clusters and 2 noise points.

Uploaded by

syam_5491983
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 22

SHEET NO______

INPUT

decisiontree.csv file

decisiontree.arff file

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

OUTPUT

1)Open decision.arff file in weka software

2)Choose Classify

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

2)Choose ID3 Tree

3)Run the decisiontree.arff file

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

RESULT

Classifier Output :
=== Run information ===
Scheme: weka.classifiers.trees.Id3
Relation: lokesh.symbolic
Instances: 14
Attributes: 5
age
income
student
credit_rating
buys_computer
Test mode: 10-fold cross-validation
=== Classifier model (full training set) ===
Id3
age = <=30
| student = no: no
| student = yes: yes
age = 31..40: yes
age = >40
| credit_rating = fair: yes
| credit_rating = excellent: no

Time taken to build model: 0 seconds


=== Stratified cross-validation ===
=== Summary ===

Correctly Classified Instances 12 85.7143 %


Incorrectly Classified Instances 2 14.2857 %
Kappa statistic 0.6889
Mean absolute error 0.1429
Root mean squared error 0.378
Relative absolute error 30 %
Root relative squared error 76.6097 %
Total Number of Instances 14

=== Detailed Accuracy By Class ===

TP Rate FP Rate Precision Recall F-Measure ROC Area Class


0.889 0.2 0.889 0.889 0.889 0.844 yes
0.8 0.111 0.8 0.8 0.8 0.844 no
Weighted Avg. 0.857 0.168 0.857 0.857 0.857 0.844

=== Confusion Matrix ===

a b <-- classified as
8 1 | a = yes
1 4 | b = no

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

4)Choose Visualize Tree

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

RESULT

Classifier Output :
=== Run information ===
Scheme: weka.classifiers.trees.J48 -C 0.25 -M 2
Relation: lokesh.symbolic
Instances: 14
Attributes: 5
age
income
student
credit_rating
buys_computer
Test mode: 10-fold cross-validation
=== Classifier model (full training set) ===
J48 pruned tree
------------------
age = <=30
| student = no: no (3.0)
| student = yes: yes (2.0)
age = 31..40: yes (4.0)
age = >40
| credit_rating = fair: yes (3.0)
| credit_rating = excellent: no (2.0)

Number of Leaves : 5
Size of the tree : 8
Time taken to build model: 0.08 seconds
=== Stratified cross-validation ===
=== Summary ===
Correctly Classified Instances 7 50 %
Incorrectly Classified Instances 7 50 %
Kappa statistic -0.0426
Mean absolute error 0.4167
Root mean squared error 0.5984
Relative absolute error 87.5 %
Root relative squared error 121.2987 %
Total Number of Instances 14
=== Detailed Accuracy By Class ===

TP Rate FP Rate Precision Recall F-Measure ROC Area Class


0.556 0.6 0.625 0.556 0.588 0.633 yes
0.4 0.444 0.333 0.4 0.364 0.633 no
Weighted Avg. 0.5 0.544 0.521 0.5 0.508 0.633

=== Confusion Matrix ===


a b <-- classified as
5 4 | a = yes 3 2 | b = no

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

INPUT

Apriori.csv file

apriori.arff file

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

OUTPUT

1)Open apriori.arff file in weka software

2)Choose Associate

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

3)Set minimum support and minimum confidence values

4)Run the apriori.arff file

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

Result

Associator Output :

=== Run information ===

Scheme: weka.associations.Apriori -N 10 -T 0 -C 0.7 -D 0.05 -U 1.0 -M 0.4 -S -1.0 -c -1


Relation: apriori
Instances: 5
Attributes: 6
A
B
C
D
E
K
=== Associator model (full training set) ===

Apriori
=======

Minimum support: 0.7 (3 instances)


Minimum metric <confidence>: 0.7
Number of cycles performed: 6

Generated sets of large itemsets:

Size of set of large itemsets L(1): 6

Size of set of large itemsets L(2): 8

Size of set of large itemsets L(3): 3

Best rules found:

1. B=TRUE 4 ==> A=TRUE 4 conf:(1)


2. D=TRUE 4 ==> A=TRUE 4 conf:(1)
3. C=TRUE 3 ==> A=TRUE 3 conf:(1)
4. E=FALSE 3 ==> A=TRUE 3 conf:(1)
5. K=FALSE 3 ==> A=TRUE 3 conf:(1)
6. K=FALSE 3 ==> B=TRUE 3 conf:(1)
7. E=FALSE 3 ==> D=TRUE 3 conf:(1)
8. B=TRUE D=TRUE 3 ==> A=TRUE 3 conf:(1)
9. B=TRUE K=FALSE 3 ==> A=TRUE 3 conf:(1)
10. A=TRUE K=FALSE 3 ==> B=TRUE 3 conf:(1)

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

INPUT

Kmeans.csv file

kmeans.arff file

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

OUTPUT

1)Open the kmeans.arff file in weka software

2)Choose cluster

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

3)Choose SimpleKmeans

4)Set numClusters and choose Manhattan Distance

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

5)Run the kmeans.arff file

6)Choose Visualize Cluster Assignments

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

7)Clusterer Visualize

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

RESULT

Clusterer Output :

=== Run information ===

Scheme: weka.clusterers.SimpleKMeans -N 3 -A "weka.core.ManhattanDistance -R first-last" -I 500


-S 10
Relation: saikumar
Instances: 8
Attributes: 2
X
Y
Test mode: evaluate on training data

=== Model and evaluation on training set ===

kMeans
======

Number of iterations: 3
Sum of within cluster distances: 1.6071428571428572
Missing values globally replaced with mean/mode

Cluster centroids:
Cluster#
Attribute Full Data 0 1 2
(8) (3) (2) (3)
=======================================================
X 4.5 7 1.5 4
Y 5 4 3.5 9

Clustered Instances

0 3 ( 38%)
1 2 ( 25%)
2 3 ( 38%)

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

INPUT

Dbscan.csv file

dbscan.arff file

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

OUTPUT

1)Open dbscan.arff file in weka software

2)Choose Cluster

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

3)Choose DBSCAN

4)Set Epsilon and Minpoints

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

5)Run the file

6)Choose Visualize Cluster Assignments

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

7)Clusterer Visualize

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY


SHEET NO______

RESULT

Clusterer Output:

=== Run information ===

Scheme: weka.clusterers.DBScan -E 0.4 -M 3 -I


weka.clusterers.forOPTICSAndDBScan.Databases.SequentialDatabase -D
weka.clusterers.forOPTICSAndDBScan.DataObjects.EuclidianDataObject
Relation: saikumar
Instances: 8
Attributes: 2
X
Y
Test mode: evaluate on training data

=== Model and evaluation on training set ===

DBScan clustering results


==================================================================
======================

Clustered DataObjects: 8
Number of attributes: 2
Epsilon: 0.4; minPoints: 3
Index: weka.clusterers.forOPTICSAndDBScan.Databases.SequentialDatabase
Distance-type: weka.clusterers.forOPTICSAndDBScan.DataObjects.EuclidianDataObject
Number of generated clusters: 2
Elapsed time: .01

(0.) 2,10 --> 1


(1.) 2,5 --> NOISE
(2.) 8,4 --> 0
(3.) 5,8 --> 1
(4.) 7,5 --> 0
(5.) 6,4 --> 0
(6.) 1,2 --> NOISE
(7.) 4,9 --> 1

Clustered Instances

0 3 ( 50%)
1 3 ( 50%)

Unclustered instances : 2

SRI KAVITHA ENGINEERING COLLEGE,KAREPALLY

You might also like