Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created January 17, 2021 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/72ff7bdb1fa8a44847489f119f020340 to your computer and use it in GitHub Desktop.
Save amankharwal/72ff7bdb1fa8a44847489f119f020340 to your computer and use it in GitHub Desktop.
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
from sklearn.cluster import KMeans
from sklearn import neighbors
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import MinMaxScaler
df = pd.read_csv('books.csv',error_bad_lines = False)
df.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment