Skip to content

Commit d98f6d2

Browse files
author
Ayush Varshney
committed
Salary Clustering
1 parent 9ec48e7 commit d98f6d2

File tree

4 files changed

+1807
-0
lines changed

4 files changed

+1807
-0
lines changed
1000 Bytes
Binary file not shown.

K-Means-Clustering/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# K-Means++ Clustering
2+
3+
K-Means++ is a unsupervised learning algorithm ensures a smarter initialization of the centroids and improves the quality of the clustering.<br>
4+
Apart from initialization, the rest of the algorithm is the same as the standard K-means algorithm.<br/><br>
5+
### Salary Dataset : https://www.kaggle.com/rsadiq/salary <br><br>
6+
**Check out the colab notebook and boom you get all the details regarding K-means++ and methods with codes and graphs.**
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
YearsExperience,Salary
2+
1.1,39343
3+
1.3,46205
4+
1.5,37731
5+
2,43525
6+
2.2,39891
7+
2.9,56642
8+
3,60150
9+
3.2,54445
10+
3.2,64445
11+
3.7,57189
12+
3.9,63218
13+
4,55794
14+
4,56957
15+
4.1,57081
16+
4.5,61111
17+
4.9,67938
18+
5.1,66029
19+
5.3,83088
20+
5.9,81363
21+
6,93940
22+
6.8,91738
23+
7.1,98273
24+
7.9,101302
25+
8.2,113812
26+
8.7,109431
27+
9,105582
28+
9.5,116969
29+
9.6,112635
30+
10.3,122391
31+
10.5,121872
32+
11.2,127345
33+
11.5,126756
34+
12.3,128765
35+
12.9,135675
36+
13.5,139465

K-Means-Clustering/Unsupervised_Learning_.ipynb

Lines changed: 1765 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)