Created
April 30, 2022 03:46
-
-
Save hucodelab/bf3d38ab49161939799a48da24a5d24a to your computer and use it in GitHub Desktop.
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
| # importing libraries | |
| import sklearn | |
| import pandas as pd | |
| import numpy as np | |
| from sklearn.datasets import load_breast_cancer | |
| from sklearn.model_selection import train_test_split | |
| from sklearn.neighbors import KNeighborsClassifier | |
| from sklearn.metrics import accuracy_score | |
| import matplotlib.pyplot as plt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment