SlideShare a Scribd company logo
1 of 33
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
k-means clustering
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
What Will You Learn Today?
Cluster analysisIntroduction to
Machine Learning
Types of clustering
Introduction to k-
means clustering
How k-means
clustering work?
Demo in R: Netflix
use-case
1 2 3
4 65
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
What is Machine learning?
Machine learning is a type of artificial intelligence (AI) that provides computers with the ability to learn without
being explicitly programmed.
Training Data Learn
Algorithm
Build Model Perform
Feedback
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
ML Use Case ā€“ Google self driving car
ļƒ˜ Google self driving car is a smart, driverless car.
ļƒ˜ It collects data from environment through
sensors.
ļƒ˜ Takes decisions like when to speed up, when to
speed down, when to overtake and when to
turn.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Types of Machine Learning
Supervised
learning
Unsupervised
learning
ļƒ˜Feed the classifier with training data set and predefined labels.
ļƒ˜It will learn to categorize particular data under a specific label.
When and where
should I buy a
house?
House features
Area crime rate
Bedrooms
Distance to HQ
Area (in sq.ft)
Locality
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Types of Machine Learning
Supervised
learning
Unsupervised
learning
ļƒ˜An image of fruits is first fed into the system.
ļƒ˜The system identifies different fruits using features like color, size and it categorizes them.
ļƒ˜When a new fruit is shown, it analyses its features and puts it into the category having
similar featured items.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Cluster Analysis
Unsupervised
Learning
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
What is Clustering?
ļƒ˜Clustering means grouping of objects based on the information found in the data describing the objects or their
relationship.
ļƒ˜ The goal is that objects in one group should be similar to each other but different from objects in another group.
ļƒ˜ It deals with finding a structure in a collection of unlabeled data.
Some Examples of clustering methods are:
ļƒ˜ K-means Clustering
ļƒ˜ Fuzzy/ C-means Clustering
ļƒ˜ Hierarchical Clustering
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Clustering Use Cases
Marketing
Seismic studiesLand use
Insurance
Marketing
Discovering distinct groups in customer databases,
such as customers who make lot of long-distance
calls.
Insurance
Identifying groups of crop insurance policy holders
with a high average claim rate. Farmers crash crops,
when it is ā€œprofitableā€.
Land use
Identification of areas of similar land use in a GIS
database.
Seismic studies
Identifying probable areas for oil/gas exploration
based on seismic data
Use-cases
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Types of clustering
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Types of Clustering
Exclusive Clustering
ā€¢ An item belongs exclusively to
one cluster, not several.
ā€¢ K-means does this sort of
exclusive clustering.
ā€¢ An item can belong to multiple
clusters
ā€¢ Its degree of association with each
cluster is known
ā€¢ Fuzzy/ C-means does this sort of
exclusive clustering.
Overlapping Clustering Hierarchial Clustering
ā€¢ When two cluster have a parent-
child relationship or a tree-like
structure then it is Hierarchical
clustering
Cluster 1
Cluster 2
Cluster 0
Cluster 2
Cluster 1
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
K-means clustering
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
K-means clustering
k-means
clustering
k-means clustering is one of the
simplest algorithms which uses
unsupervised learning method to
solve known clustering issues.
Divides entire dataset into k clusters.
k-means clustering require following
two inputs.
1. K = number of clusters
2. Training set(m) = {x1, x2, x3,......, xm}
Total population
Group 2 Group 3Group 1 Group 4
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Example - Google News
ļƒ˜Various news URLs related to Trump and Modi are grouped under one section.
ļƒ˜K-means clustering automatically clusters new stories about the same topic into pre-defined clusters.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Example
I need to find specific
locations to build
schools in this area so
that the students
doesnā€™t have to travel
much
The plot of students in an area is as given below,
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Example - Solution
This looks good
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
But how did he do
that?...
Iā€™ll show you how
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
How k-means work?
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
How k-means work?
Choose number of clusters
Initialization
Cluster assignment
Move centroid
Optimization
Convergence
The WSS is defined as the sum of the squared distance between each member of the
cluster and its centroid.
Mathematically:
where, p(i)= data point
q(i)= closest centroid to data point
The idea of the elbow method is to choose the k after which the WSS decrease
is almost constant.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
How k-means work?
Choose number of clusters
Initialization
Cluster assignment
Move centroid
Optimization
Convergence
Cluster
centroid
X-axis
Y-axis
ļƒ˜Randomly initialize k points called the cluster centroids.
Here, k = 2
ļƒ˜Value of k(number of clusters) can be determined by the elbow curve.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
How k-means work?
Choose number of clusters
Initialization
Cluster assignment
Move centroid
Optimization
Convergence
ļƒ˜ Compute the distance between the data points and the cluster
centroid initialized.
ļƒ˜ Depending upon the minimum distance, data points are divided into two
groups.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
How k-means work?
Choose number of clusters
Initialization
Cluster assignment
Move centroid
Optimization
Convergence
ļƒ˜ Compute the mean of blue dots.
ļƒ˜ Reposition blue cluster centroid to this mean.
ļƒ˜ Compute the mean of orange dots.
ļƒ˜ Reposition orange cluster centroid to this mean.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
How k-means work?
Choose number of clusters
Initialization
Cluster assignment
Move centroid
Optimization
Convergence
ļƒ˜Repeat previous two steps iteratively till the cluster centroids stop changing their
positions.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
How k-means work?
Choose number of clusters
Initialization
Cluster assignment
Move centroid
Optimization
Convergence
ļƒ˜ Finally, k-means clustering algorithm converges.
ļƒ˜ Divides the data points into two clusters clearly visible in orange and blue.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Problem Statement
Challenge: Netflix wanted to increase its business by showing most popular movies on its website.
Solution: So, Netflix decided to group the movies based on budget, gross and facebook likes
Approach: For this, Netflix took imdb dataset of 5000 values and applied k-means clustering to group it.
But how would I
know which movie
set to show and
which to not ?
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Demo
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Solution ā€“ R Script
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Output
ļƒ˜ We got three clusters based on budget and gross.
ļƒ˜ Lets see how good are these clusters.
ļƒ˜ Using command cl gives following output.
Within cluster sum of squares by cluster:
(between_SS / total _ SS = 72.4 %)
ļƒ˜ Higher the %age value, better is the model.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Further, lets relate cluster assignment to individual characteristics like director facebook likes(column 5) and movie
facebook likes(column 28). Cluster 2 has maximum movie likes as well as director likes.
Output
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Try this out
I want to know the profit
values of movie
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Hmmā€¦ I will go with cluster
2. It is making maximum
profit and has maximum
facebook likes.
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training
Course Details
Go to www.edureka.co/data-science
Get Edureka Certified in Data Science Today!
What our learners have to say about us!
Shravan Reddy says- ā€œI would like to recommend any one who
wants to be a Data Scientist just one place: Edureka. Explanations
are clean, clear, easy to understand. Their support team works
very well.. I took the Data Science course and I'm going to take
Machine Learning with Mahout and then Big Data and Hadoopā€.
Gnana Sekhar says - ā€œEdureka Data science course provided me a very
good mixture of theoretical and practical training. LMS pre recorded
sessions and assignments were very good as there is a lot of
information in them that will help me in my job. Edureka is my
teaching GURU now...Thanks EDUREKA.ā€
Balu Samaga says - ā€œIt was a great experience to undergo and get
certified in the Data Science course from Edureka. Quality of the
training materials, assignments, project, support and other
infrastructures are a top notch.ā€
www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training

More Related Content

What's hot

Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...Edureka!
Ā 
Classification and Clustering
Classification and ClusteringClassification and Clustering
Classification and ClusteringEng Teong Cheah
Ā 
Machine learning by Dr. Vivek Vijay and Dr. Sandeep Yadav
Machine learning by Dr. Vivek Vijay and Dr. Sandeep YadavMachine learning by Dr. Vivek Vijay and Dr. Sandeep Yadav
Machine learning by Dr. Vivek Vijay and Dr. Sandeep YadavAgile Testing Alliance
Ā 
support vector regression
support vector regressionsupport vector regression
support vector regressionAkhilesh Joshi
Ā 
K-means Clustering
K-means ClusteringK-means Clustering
K-means ClusteringAnna Fensel
Ā 
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...Simplilearn
Ā 
Logistic Regression in Python | Logistic Regression Example | Machine Learnin...
Logistic Regression in Python | Logistic Regression Example | Machine Learnin...Logistic Regression in Python | Logistic Regression Example | Machine Learnin...
Logistic Regression in Python | Logistic Regression Example | Machine Learnin...Edureka!
Ā 
Hierarchical Clustering | Hierarchical Clustering in R |Hierarchical Clusteri...
Hierarchical Clustering | Hierarchical Clustering in R |Hierarchical Clusteri...Hierarchical Clustering | Hierarchical Clustering in R |Hierarchical Clusteri...
Hierarchical Clustering | Hierarchical Clustering in R |Hierarchical Clusteri...Simplilearn
Ā 
Classification and prediction in data mining
Classification and prediction in data miningClassification and prediction in data mining
Classification and prediction in data miningEr. Nawaraj Bhandari
Ā 
Decision Tree Algorithm With Example | Decision Tree In Machine Learning | Da...
Decision Tree Algorithm With Example | Decision Tree In Machine Learning | Da...Decision Tree Algorithm With Example | Decision Tree In Machine Learning | Da...
Decision Tree Algorithm With Example | Decision Tree In Machine Learning | Da...Simplilearn
Ā 
Naive bayes
Naive bayesNaive bayes
Naive bayesumeskath
Ā 
Machine Learning Tutorial Part - 2 | Machine Learning Tutorial For Beginners ...
Machine Learning Tutorial Part - 2 | Machine Learning Tutorial For Beginners ...Machine Learning Tutorial Part - 2 | Machine Learning Tutorial For Beginners ...
Machine Learning Tutorial Part - 2 | Machine Learning Tutorial For Beginners ...Simplilearn
Ā 
K MEANS CLUSTERING
K MEANS CLUSTERINGK MEANS CLUSTERING
K MEANS CLUSTERINGsingh7599
Ā 
Decision Tree Algorithm & Analysis | Machine Learning Algorithm | Data Scienc...
Decision Tree Algorithm & Analysis | Machine Learning Algorithm | Data Scienc...Decision Tree Algorithm & Analysis | Machine Learning Algorithm | Data Scienc...
Decision Tree Algorithm & Analysis | Machine Learning Algorithm | Data Scienc...Edureka!
Ā 
Intro to modelling-supervised learning
Intro to modelling-supervised learningIntro to modelling-supervised learning
Intro to modelling-supervised learningJustin Sebok
Ā 
supervised learning
supervised learningsupervised learning
supervised learningAmar Tripathi
Ā 
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...Simplilearn
Ā 
K - Nearest neighbor ( KNN )
K - Nearest neighbor  ( KNN )K - Nearest neighbor  ( KNN )
K - Nearest neighbor ( KNN )Mohammad Junaid Khan
Ā 
Machine learning Lecture 3
Machine learning Lecture 3Machine learning Lecture 3
Machine learning Lecture 3Srinivasan R
Ā 

What's hot (20)

Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
Ā 
Classification and Clustering
Classification and ClusteringClassification and Clustering
Classification and Clustering
Ā 
Machine learning by Dr. Vivek Vijay and Dr. Sandeep Yadav
Machine learning by Dr. Vivek Vijay and Dr. Sandeep YadavMachine learning by Dr. Vivek Vijay and Dr. Sandeep Yadav
Machine learning by Dr. Vivek Vijay and Dr. Sandeep Yadav
Ā 
support vector regression
support vector regressionsupport vector regression
support vector regression
Ā 
K-means Clustering
K-means ClusteringK-means Clustering
K-means Clustering
Ā 
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Ā 
Logistic Regression in Python | Logistic Regression Example | Machine Learnin...
Logistic Regression in Python | Logistic Regression Example | Machine Learnin...Logistic Regression in Python | Logistic Regression Example | Machine Learnin...
Logistic Regression in Python | Logistic Regression Example | Machine Learnin...
Ā 
Kmeans
KmeansKmeans
Kmeans
Ā 
Hierarchical Clustering | Hierarchical Clustering in R |Hierarchical Clusteri...
Hierarchical Clustering | Hierarchical Clustering in R |Hierarchical Clusteri...Hierarchical Clustering | Hierarchical Clustering in R |Hierarchical Clusteri...
Hierarchical Clustering | Hierarchical Clustering in R |Hierarchical Clusteri...
Ā 
Classification and prediction in data mining
Classification and prediction in data miningClassification and prediction in data mining
Classification and prediction in data mining
Ā 
Decision Tree Algorithm With Example | Decision Tree In Machine Learning | Da...
Decision Tree Algorithm With Example | Decision Tree In Machine Learning | Da...Decision Tree Algorithm With Example | Decision Tree In Machine Learning | Da...
Decision Tree Algorithm With Example | Decision Tree In Machine Learning | Da...
Ā 
Naive bayes
Naive bayesNaive bayes
Naive bayes
Ā 
Machine Learning Tutorial Part - 2 | Machine Learning Tutorial For Beginners ...
Machine Learning Tutorial Part - 2 | Machine Learning Tutorial For Beginners ...Machine Learning Tutorial Part - 2 | Machine Learning Tutorial For Beginners ...
Machine Learning Tutorial Part - 2 | Machine Learning Tutorial For Beginners ...
Ā 
K MEANS CLUSTERING
K MEANS CLUSTERINGK MEANS CLUSTERING
K MEANS CLUSTERING
Ā 
Decision Tree Algorithm & Analysis | Machine Learning Algorithm | Data Scienc...
Decision Tree Algorithm & Analysis | Machine Learning Algorithm | Data Scienc...Decision Tree Algorithm & Analysis | Machine Learning Algorithm | Data Scienc...
Decision Tree Algorithm & Analysis | Machine Learning Algorithm | Data Scienc...
Ā 
Intro to modelling-supervised learning
Intro to modelling-supervised learningIntro to modelling-supervised learning
Intro to modelling-supervised learning
Ā 
supervised learning
supervised learningsupervised learning
supervised learning
Ā 
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Ā 
K - Nearest neighbor ( KNN )
K - Nearest neighbor  ( KNN )K - Nearest neighbor  ( KNN )
K - Nearest neighbor ( KNN )
Ā 
Machine learning Lecture 3
Machine learning Lecture 3Machine learning Lecture 3
Machine learning Lecture 3
Ā 

Similar to K-Means Clustering Algorithm - Cluster Analysis | Machine Learning Algorithm | Edureka

Application of Clustering in Data Science using Real-life Examples
Application of Clustering in Data Science using Real-life Examples Application of Clustering in Data Science using Real-life Examples
Application of Clustering in Data Science using Real-life Examples Edureka!
Ā 
K-Means Clustering Explained_ Algorithm And Sklearn Implementation _ by Mariu...
K-Means Clustering Explained_ Algorithm And Sklearn Implementation _ by Mariu...K-Means Clustering Explained_ Algorithm And Sklearn Implementation _ by Mariu...
K-Means Clustering Explained_ Algorithm And Sklearn Implementation _ by Mariu...christopher corlett
Ā 
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...Edureka!
Ā 
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...Edureka!
Ā 
B4UConference_machine learning_deeplearning
B4UConference_machine learning_deeplearningB4UConference_machine learning_deeplearning
B4UConference_machine learning_deeplearningHoa Le
Ā 
Data-centric AI and the convergence of data and model engineering: opportunit...
Data-centric AI and the convergence of data and model engineering:opportunit...Data-centric AI and the convergence of data and model engineering:opportunit...
Data-centric AI and the convergence of data and model engineering: opportunit...Paolo Missier
Ā 
Business Analytics with R
Business Analytics with RBusiness Analytics with R
Business Analytics with REdureka!
Ā 
What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...
What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...
What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...Edureka!
Ā 
data-science-pdf-16588.pdf
data-science-pdf-16588.pdfdata-science-pdf-16588.pdf
data-science-pdf-16588.pdfvkharish18
Ā 
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...Edureka!
Ā 
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...theijes
Ā 
Machine Learning Algorithms | Machine Learning Tutorial | Data Science Tutori...
Machine Learning Algorithms | Machine Learning Tutorial | Data Science Tutori...Machine Learning Algorithms | Machine Learning Tutorial | Data Science Tutori...
Machine Learning Algorithms | Machine Learning Tutorial | Data Science Tutori...Edureka!
Ā 
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)Qazi Maaz Arshad
Ā 
Data Science Full Course | Edureka
Data Science Full Course | EdurekaData Science Full Course | Edureka
Data Science Full Course | EdurekaEdureka!
Ā 
Study and Analysis of K-Means Clustering Algorithm Using Rapidminer
Study and Analysis of K-Means Clustering Algorithm Using RapidminerStudy and Analysis of K-Means Clustering Algorithm Using Rapidminer
Study and Analysis of K-Means Clustering Algorithm Using RapidminerIJERA Editor
Ā 
KNN Algorithm Using R | Edureka
KNN Algorithm Using R | EdurekaKNN Algorithm Using R | Edureka
KNN Algorithm Using R | EdurekaEdureka!
Ā 
Business Analytics Decision Tree in R
Business Analytics Decision Tree in RBusiness Analytics Decision Tree in R
Business Analytics Decision Tree in REdureka!
Ā 
Data Science : Make Smarter Business Decisions
Data Science : Make Smarter Business DecisionsData Science : Make Smarter Business Decisions
Data Science : Make Smarter Business DecisionsEdureka!
Ā 
Cloudera Data Science Challenge 3 Solution by Doug Needham
Cloudera Data Science Challenge 3 Solution by Doug NeedhamCloudera Data Science Challenge 3 Solution by Doug Needham
Cloudera Data Science Challenge 3 Solution by Doug NeedhamDoug Needham
Ā 

Similar to K-Means Clustering Algorithm - Cluster Analysis | Machine Learning Algorithm | Edureka (20)

Application of Clustering in Data Science using Real-life Examples
Application of Clustering in Data Science using Real-life Examples Application of Clustering in Data Science using Real-life Examples
Application of Clustering in Data Science using Real-life Examples
Ā 
K-Means Clustering Explained_ Algorithm And Sklearn Implementation _ by Mariu...
K-Means Clustering Explained_ Algorithm And Sklearn Implementation _ by Mariu...K-Means Clustering Explained_ Algorithm And Sklearn Implementation _ by Mariu...
K-Means Clustering Explained_ Algorithm And Sklearn Implementation _ by Mariu...
Ā 
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
Ā 
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
Ā 
B4UConference_machine learning_deeplearning
B4UConference_machine learning_deeplearningB4UConference_machine learning_deeplearning
B4UConference_machine learning_deeplearning
Ā 
Data-centric AI and the convergence of data and model engineering: opportunit...
Data-centric AI and the convergence of data and model engineering:opportunit...Data-centric AI and the convergence of data and model engineering:opportunit...
Data-centric AI and the convergence of data and model engineering: opportunit...
Ā 
Business Analytics with R
Business Analytics with RBusiness Analytics with R
Business Analytics with R
Ā 
What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...
What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...
What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...
Ā 
data-science-pdf-16588.pdf
data-science-pdf-16588.pdfdata-science-pdf-16588.pdf
data-science-pdf-16588.pdf
Ā 
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Ā 
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Ā 
Machine Learning Algorithms | Machine Learning Tutorial | Data Science Tutori...
Machine Learning Algorithms | Machine Learning Tutorial | Data Science Tutori...Machine Learning Algorithms | Machine Learning Tutorial | Data Science Tutori...
Machine Learning Algorithms | Machine Learning Tutorial | Data Science Tutori...
Ā 
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
Ā 
Data Science Full Course | Edureka
Data Science Full Course | EdurekaData Science Full Course | Edureka
Data Science Full Course | Edureka
Ā 
Study and Analysis of K-Means Clustering Algorithm Using Rapidminer
Study and Analysis of K-Means Clustering Algorithm Using RapidminerStudy and Analysis of K-Means Clustering Algorithm Using Rapidminer
Study and Analysis of K-Means Clustering Algorithm Using Rapidminer
Ā 
KNN Algorithm Using R | Edureka
KNN Algorithm Using R | EdurekaKNN Algorithm Using R | Edureka
KNN Algorithm Using R | Edureka
Ā 
Business Analytics Decision Tree in R
Business Analytics Decision Tree in RBusiness Analytics Decision Tree in R
Business Analytics Decision Tree in R
Ā 
3 classification
3  classification3  classification
3 classification
Ā 
Data Science : Make Smarter Business Decisions
Data Science : Make Smarter Business DecisionsData Science : Make Smarter Business Decisions
Data Science : Make Smarter Business Decisions
Ā 
Cloudera Data Science Challenge 3 Solution by Doug Needham
Cloudera Data Science Challenge 3 Solution by Doug NeedhamCloudera Data Science Challenge 3 Solution by Doug Needham
Cloudera Data Science Challenge 3 Solution by Doug Needham
Ā 

More from Edureka!

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaEdureka!
Ā 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaEdureka!
Ā 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaEdureka!
Ā 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaEdureka!
Ā 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaEdureka!
Ā 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaEdureka!
Ā 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaEdureka!
Ā 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaEdureka!
Ā 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaEdureka!
Ā 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaEdureka!
Ā 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | EdurekaEdureka!
Ā 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEdureka!
Ā 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEdureka!
Ā 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaEdureka!
Ā 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaEdureka!
Ā 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaEdureka!
Ā 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Edureka!
Ā 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaEdureka!
Ā 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaEdureka!
Ā 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | EdurekaEdureka!
Ā 

More from Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
Ā 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
Ā 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
Ā 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
Ā 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
Ā 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
Ā 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
Ā 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
Ā 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
Ā 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
Ā 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
Ā 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
Ā 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
Ā 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
Ā 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
Ā 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
Ā 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
Ā 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Ā 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
Ā 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
Ā 

Recently uploaded

Escorts Service Kumaraswamy Layout ā˜Ž 7737669865ā˜Ž Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ā˜Ž 7737669865ā˜Ž Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ā˜Ž 7737669865ā˜Ž Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ā˜Ž 7737669865ā˜Ž Book Your One night Stand (B...amitlee9823
Ā 
Call Girls Bannerghatta Road Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Ser...amitlee9823
Ā 
šŸ‘‰ Amritsar Call Girl šŸ‘‰šŸ“ž 6367187148 šŸ‘‰šŸ“ž JustšŸ“² Call Ruhi Call Girl Phone No Amri...
šŸ‘‰ Amritsar Call Girl šŸ‘‰šŸ“ž 6367187148 šŸ‘‰šŸ“ž JustšŸ“² Call Ruhi Call Girl Phone No Amri...šŸ‘‰ Amritsar Call Girl šŸ‘‰šŸ“ž 6367187148 šŸ‘‰šŸ“ž JustšŸ“² Call Ruhi Call Girl Phone No Amri...
šŸ‘‰ Amritsar Call Girl šŸ‘‰šŸ“ž 6367187148 šŸ‘‰šŸ“ž JustšŸ“² Call Ruhi Call Girl Phone No Amri...karishmasinghjnh
Ā 
Chintamani Call Girls: šŸ“ 7737669865 šŸ“ High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: šŸ“ 7737669865 šŸ“ High Profile Model Escorts | Bangalore ...Chintamani Call Girls: šŸ“ 7737669865 šŸ“ High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: šŸ“ 7737669865 šŸ“ High Profile Model Escorts | Bangalore ...amitlee9823
Ā 
Call Girls Indiranagar Just Call šŸ‘— 9155563397 šŸ‘— Top Class Call Girl Service B...
Call Girls Indiranagar Just Call šŸ‘— 9155563397 šŸ‘— Top Class Call Girl Service B...Call Girls Indiranagar Just Call šŸ‘— 9155563397 šŸ‘— Top Class Call Girl Service B...
Call Girls Indiranagar Just Call šŸ‘— 9155563397 šŸ‘— Top Class Call Girl Service B...only4webmaster01
Ā 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...amitlee9823
Ā 
Call Girls In Hsr Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Hsr Layout ā˜Ž 7737669865 šŸ„µ Book Your One night StandCall Girls In Hsr Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Hsr Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Standamitlee9823
Ā 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
Ā 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectBoston Institute of Analytics
Ā 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
Ā 
Call Girls In Nandini Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Nandini Layout ā˜Ž 7737669865 šŸ„µ Book Your One night StandCall Girls In Nandini Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Nandini Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Standamitlee9823
Ā 
Call Girls In Attibele ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Attibele ā˜Ž 7737669865 šŸ„µ Book Your One night StandCall Girls In Attibele ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Attibele ā˜Ž 7737669865 šŸ„µ Book Your One night Standamitlee9823
Ā 
āž„šŸ” 7737669865 šŸ”ā–» Thrissur Call-girls in Women Seeking Men šŸ”ThrissuršŸ” Escor...
āž„šŸ” 7737669865 šŸ”ā–» Thrissur Call-girls in Women Seeking Men  šŸ”ThrissuršŸ”   Escor...āž„šŸ” 7737669865 šŸ”ā–» Thrissur Call-girls in Women Seeking Men  šŸ”ThrissuršŸ”   Escor...
āž„šŸ” 7737669865 šŸ”ā–» Thrissur Call-girls in Women Seeking Men šŸ”ThrissuršŸ” Escor...amitlee9823
Ā 
Call Girls In Bellandur ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Bellandur ā˜Ž 7737669865 šŸ„µ Book Your One night StandCall Girls In Bellandur ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Bellandur ā˜Ž 7737669865 šŸ„µ Book Your One night Standamitlee9823
Ā 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
Ā 
āž„šŸ” 7737669865 šŸ”ā–» Mathura Call-girls in Women Seeking Men šŸ”MathurašŸ” Escorts...
āž„šŸ” 7737669865 šŸ”ā–» Mathura Call-girls in Women Seeking Men  šŸ”MathurašŸ”   Escorts...āž„šŸ” 7737669865 šŸ”ā–» Mathura Call-girls in Women Seeking Men  šŸ”MathurašŸ”   Escorts...
āž„šŸ” 7737669865 šŸ”ā–» Mathura Call-girls in Women Seeking Men šŸ”MathurašŸ” Escorts...amitlee9823
Ā 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Researchmichael115558
Ā 
āž„šŸ” 7737669865 šŸ”ā–» Bangalore Call-girls in Women Seeking Men šŸ”BangalorešŸ” Esc...
āž„šŸ” 7737669865 šŸ”ā–» Bangalore Call-girls in Women Seeking Men  šŸ”BangalorešŸ”   Esc...āž„šŸ” 7737669865 šŸ”ā–» Bangalore Call-girls in Women Seeking Men  šŸ”BangalorešŸ”   Esc...
āž„šŸ” 7737669865 šŸ”ā–» Bangalore Call-girls in Women Seeking Men šŸ”BangalorešŸ” Esc...amitlee9823
Ā 

Recently uploaded (20)

Escorts Service Kumaraswamy Layout ā˜Ž 7737669865ā˜Ž Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ā˜Ž 7737669865ā˜Ž Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ā˜Ž 7737669865ā˜Ž Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ā˜Ž 7737669865ā˜Ž Book Your One night Stand (B...
Ā 
Call Girls Bannerghatta Road Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Ser...
Ā 
šŸ‘‰ Amritsar Call Girl šŸ‘‰šŸ“ž 6367187148 šŸ‘‰šŸ“ž JustšŸ“² Call Ruhi Call Girl Phone No Amri...
šŸ‘‰ Amritsar Call Girl šŸ‘‰šŸ“ž 6367187148 šŸ‘‰šŸ“ž JustšŸ“² Call Ruhi Call Girl Phone No Amri...šŸ‘‰ Amritsar Call Girl šŸ‘‰šŸ“ž 6367187148 šŸ‘‰šŸ“ž JustšŸ“² Call Ruhi Call Girl Phone No Amri...
šŸ‘‰ Amritsar Call Girl šŸ‘‰šŸ“ž 6367187148 šŸ‘‰šŸ“ž JustšŸ“² Call Ruhi Call Girl Phone No Amri...
Ā 
Chintamani Call Girls: šŸ“ 7737669865 šŸ“ High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: šŸ“ 7737669865 šŸ“ High Profile Model Escorts | Bangalore ...Chintamani Call Girls: šŸ“ 7737669865 šŸ“ High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: šŸ“ 7737669865 šŸ“ High Profile Model Escorts | Bangalore ...
Ā 
Call Girls Indiranagar Just Call šŸ‘— 9155563397 šŸ‘— Top Class Call Girl Service B...
Call Girls Indiranagar Just Call šŸ‘— 9155563397 šŸ‘— Top Class Call Girl Service B...Call Girls Indiranagar Just Call šŸ‘— 9155563397 šŸ‘— Top Class Call Girl Service B...
Call Girls Indiranagar Just Call šŸ‘— 9155563397 šŸ‘— Top Class Call Girl Service B...
Ā 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Ā 
Call Girls In Hsr Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Hsr Layout ā˜Ž 7737669865 šŸ„µ Book Your One night StandCall Girls In Hsr Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Hsr Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Ā 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Ā 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science Project
Ā 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Ā 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Ā 
Call Girls In Nandini Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Nandini Layout ā˜Ž 7737669865 šŸ„µ Book Your One night StandCall Girls In Nandini Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Nandini Layout ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Ā 
Call Girls In Attibele ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Attibele ā˜Ž 7737669865 šŸ„µ Book Your One night StandCall Girls In Attibele ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Attibele ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Ā 
āž„šŸ” 7737669865 šŸ”ā–» Thrissur Call-girls in Women Seeking Men šŸ”ThrissuršŸ” Escor...
āž„šŸ” 7737669865 šŸ”ā–» Thrissur Call-girls in Women Seeking Men  šŸ”ThrissuršŸ”   Escor...āž„šŸ” 7737669865 šŸ”ā–» Thrissur Call-girls in Women Seeking Men  šŸ”ThrissuršŸ”   Escor...
āž„šŸ” 7737669865 šŸ”ā–» Thrissur Call-girls in Women Seeking Men šŸ”ThrissuršŸ” Escor...
Ā 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Ā 
Call Girls In Bellandur ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Bellandur ā˜Ž 7737669865 šŸ„µ Book Your One night StandCall Girls In Bellandur ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Call Girls In Bellandur ā˜Ž 7737669865 šŸ„µ Book Your One night Stand
Ā 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Ā 
āž„šŸ” 7737669865 šŸ”ā–» Mathura Call-girls in Women Seeking Men šŸ”MathurašŸ” Escorts...
āž„šŸ” 7737669865 šŸ”ā–» Mathura Call-girls in Women Seeking Men  šŸ”MathurašŸ”   Escorts...āž„šŸ” 7737669865 šŸ”ā–» Mathura Call-girls in Women Seeking Men  šŸ”MathurašŸ”   Escorts...
āž„šŸ” 7737669865 šŸ”ā–» Mathura Call-girls in Women Seeking Men šŸ”MathurašŸ” Escorts...
Ā 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
Ā 
āž„šŸ” 7737669865 šŸ”ā–» Bangalore Call-girls in Women Seeking Men šŸ”BangalorešŸ” Esc...
āž„šŸ” 7737669865 šŸ”ā–» Bangalore Call-girls in Women Seeking Men  šŸ”BangalorešŸ”   Esc...āž„šŸ” 7737669865 šŸ”ā–» Bangalore Call-girls in Women Seeking Men  šŸ”BangalorešŸ”   Esc...
āž„šŸ” 7737669865 šŸ”ā–» Bangalore Call-girls in Women Seeking Men šŸ”BangalorešŸ” Esc...
Ā 

K-Means Clustering Algorithm - Cluster Analysis | Machine Learning Algorithm | Edureka

  • 1. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training k-means clustering
  • 2. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training What Will You Learn Today? Cluster analysisIntroduction to Machine Learning Types of clustering Introduction to k- means clustering How k-means clustering work? Demo in R: Netflix use-case 1 2 3 4 65
  • 3. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training What is Machine learning? Machine learning is a type of artificial intelligence (AI) that provides computers with the ability to learn without being explicitly programmed. Training Data Learn Algorithm Build Model Perform Feedback
  • 4. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training ML Use Case ā€“ Google self driving car ļƒ˜ Google self driving car is a smart, driverless car. ļƒ˜ It collects data from environment through sensors. ļƒ˜ Takes decisions like when to speed up, when to speed down, when to overtake and when to turn.
  • 5. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Types of Machine Learning Supervised learning Unsupervised learning ļƒ˜Feed the classifier with training data set and predefined labels. ļƒ˜It will learn to categorize particular data under a specific label. When and where should I buy a house? House features Area crime rate Bedrooms Distance to HQ Area (in sq.ft) Locality
  • 6. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Types of Machine Learning Supervised learning Unsupervised learning ļƒ˜An image of fruits is first fed into the system. ļƒ˜The system identifies different fruits using features like color, size and it categorizes them. ļƒ˜When a new fruit is shown, it analyses its features and puts it into the category having similar featured items.
  • 7. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Cluster Analysis Unsupervised Learning
  • 8. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training What is Clustering? ļƒ˜Clustering means grouping of objects based on the information found in the data describing the objects or their relationship. ļƒ˜ The goal is that objects in one group should be similar to each other but different from objects in another group. ļƒ˜ It deals with finding a structure in a collection of unlabeled data. Some Examples of clustering methods are: ļƒ˜ K-means Clustering ļƒ˜ Fuzzy/ C-means Clustering ļƒ˜ Hierarchical Clustering
  • 9. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Clustering Use Cases Marketing Seismic studiesLand use Insurance Marketing Discovering distinct groups in customer databases, such as customers who make lot of long-distance calls. Insurance Identifying groups of crop insurance policy holders with a high average claim rate. Farmers crash crops, when it is ā€œprofitableā€. Land use Identification of areas of similar land use in a GIS database. Seismic studies Identifying probable areas for oil/gas exploration based on seismic data Use-cases
  • 10. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Types of clustering
  • 11. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Types of Clustering Exclusive Clustering ā€¢ An item belongs exclusively to one cluster, not several. ā€¢ K-means does this sort of exclusive clustering. ā€¢ An item can belong to multiple clusters ā€¢ Its degree of association with each cluster is known ā€¢ Fuzzy/ C-means does this sort of exclusive clustering. Overlapping Clustering Hierarchial Clustering ā€¢ When two cluster have a parent- child relationship or a tree-like structure then it is Hierarchical clustering Cluster 1 Cluster 2 Cluster 0 Cluster 2 Cluster 1
  • 12. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training K-means clustering
  • 13. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training K-means clustering k-means clustering k-means clustering is one of the simplest algorithms which uses unsupervised learning method to solve known clustering issues. Divides entire dataset into k clusters. k-means clustering require following two inputs. 1. K = number of clusters 2. Training set(m) = {x1, x2, x3,......, xm} Total population Group 2 Group 3Group 1 Group 4
  • 14. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Example - Google News ļƒ˜Various news URLs related to Trump and Modi are grouped under one section. ļƒ˜K-means clustering automatically clusters new stories about the same topic into pre-defined clusters.
  • 15. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Example I need to find specific locations to build schools in this area so that the students doesnā€™t have to travel much The plot of students in an area is as given below,
  • 16. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Example - Solution This looks good
  • 17. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training But how did he do that?... Iā€™ll show you how
  • 18. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training How k-means work?
  • 19. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training How k-means work? Choose number of clusters Initialization Cluster assignment Move centroid Optimization Convergence The WSS is defined as the sum of the squared distance between each member of the cluster and its centroid. Mathematically: where, p(i)= data point q(i)= closest centroid to data point The idea of the elbow method is to choose the k after which the WSS decrease is almost constant.
  • 20. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training How k-means work? Choose number of clusters Initialization Cluster assignment Move centroid Optimization Convergence Cluster centroid X-axis Y-axis ļƒ˜Randomly initialize k points called the cluster centroids. Here, k = 2 ļƒ˜Value of k(number of clusters) can be determined by the elbow curve.
  • 21. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training How k-means work? Choose number of clusters Initialization Cluster assignment Move centroid Optimization Convergence ļƒ˜ Compute the distance between the data points and the cluster centroid initialized. ļƒ˜ Depending upon the minimum distance, data points are divided into two groups.
  • 22. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training How k-means work? Choose number of clusters Initialization Cluster assignment Move centroid Optimization Convergence ļƒ˜ Compute the mean of blue dots. ļƒ˜ Reposition blue cluster centroid to this mean. ļƒ˜ Compute the mean of orange dots. ļƒ˜ Reposition orange cluster centroid to this mean.
  • 23. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training How k-means work? Choose number of clusters Initialization Cluster assignment Move centroid Optimization Convergence ļƒ˜Repeat previous two steps iteratively till the cluster centroids stop changing their positions.
  • 24. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training How k-means work? Choose number of clusters Initialization Cluster assignment Move centroid Optimization Convergence ļƒ˜ Finally, k-means clustering algorithm converges. ļƒ˜ Divides the data points into two clusters clearly visible in orange and blue.
  • 25. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Problem Statement Challenge: Netflix wanted to increase its business by showing most popular movies on its website. Solution: So, Netflix decided to group the movies based on budget, gross and facebook likes Approach: For this, Netflix took imdb dataset of 5000 values and applied k-means clustering to group it. But how would I know which movie set to show and which to not ?
  • 27. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Solution ā€“ R Script
  • 28. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Output ļƒ˜ We got three clusters based on budget and gross. ļƒ˜ Lets see how good are these clusters. ļƒ˜ Using command cl gives following output. Within cluster sum of squares by cluster: (between_SS / total _ SS = 72.4 %) ļƒ˜ Higher the %age value, better is the model.
  • 29. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Further, lets relate cluster assignment to individual characteristics like director facebook likes(column 5) and movie facebook likes(column 28). Cluster 2 has maximum movie likes as well as director likes. Output
  • 30. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Try this out I want to know the profit values of movie
  • 31. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Hmmā€¦ I will go with cluster 2. It is making maximum profit and has maximum facebook likes.
  • 32. www.edureka.co/data-scienceEdurekaā€™s Data Science Certification Training Course Details Go to www.edureka.co/data-science Get Edureka Certified in Data Science Today! What our learners have to say about us! Shravan Reddy says- ā€œI would like to recommend any one who wants to be a Data Scientist just one place: Edureka. Explanations are clean, clear, easy to understand. Their support team works very well.. I took the Data Science course and I'm going to take Machine Learning with Mahout and then Big Data and Hadoopā€. Gnana Sekhar says - ā€œEdureka Data science course provided me a very good mixture of theoretical and practical training. LMS pre recorded sessions and assignments were very good as there is a lot of information in them that will help me in my job. Edureka is my teaching GURU now...Thanks EDUREKA.ā€ Balu Samaga says - ā€œIt was a great experience to undergo and get certified in the Data Science course from Edureka. Quality of the training materials, assignments, project, support and other infrastructures are a top notch.ā€

Editor's Notes

  1. Add photos