Clustering - Q2
You will first want to set the colors of the clusters, such that each cluster will be plotted using a different color. Let's use blue and red. You do this by first setting up a dictionary of colors and their cluster assignments:
color_map = {0: 'b', 1: 'r'}
Show Hint
Next