Unsupervised-Machine-Learning-Clustering by Yididiya Beyene#9
Open
Yididiya16 wants to merge 2 commits intosoftwareWCU:mainfrom
Open
Unsupervised-Machine-Learning-Clustering by Yididiya Beyene#9Yididiya16 wants to merge 2 commits intosoftwareWCU:mainfrom
Yididiya16 wants to merge 2 commits intosoftwareWCU:mainfrom
Conversation
Author
|
Commit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The code applies unsupervised machine learning to group medicines based on their Weight Index and pH values. It first loads and standardizes the data, then uses the Elbow Method to determine the optimal number of clusters (K = 2). K-Means and Hierarchical Clustering are applied, and cluster quality is evaluated with Silhouette Scores. Results are visualized using scatter plots and a dendrogram, showing consistent grouping of medicines with similar features. Overall, the code demonstrates how unsupervised learning can automatically identify meaningful patterns in the dataset.