Installed Key Python Libraries for Machine Learning
Pandas
pip install pandas
Scikit-learn
pip install scikit-learn
Matplotlib
pip install matplotlib
ALGORITHM
IRIS DATASET
OUTPUT
DENSITY_PLOTS
HISTOGRAMS
PUSH TO GITHUB
git checkout -b feature-24MCR075
Purpose: Creates a new branch named feature-24MCR046 and immediately switches to it.
git branch
Purpose: Lists all the branches in the current repository.
git status
Purpose: Shows the current status of the working directory and staging area.
git add .
Purpose: Adds all modified and new files in the current directory (and subdirectories) to the staging area.
git push origin feature-24MCR046
Purpose: Pushes the feature-24MCR046 branch and its commits to the remote repository (origin).