By: Debasis Das (17-Feb-2021) KMeans Clustering using SKLearn Plotting the cluster centroid with the cluster points import pandas as pd import numpy as np from sklearn.cluster import KMeans from sklearn.decomposition import PCA import matplotlib.pyplot as plt A = [ [10,10],…