color to a plot a scatter plot in python code example
Example: how to plot a scatter plot in matplotlib
# Import matplotlib
import matplotlib.pyplot as plt
# Set plot space as inline for inline plots and qt for external plots
%matplotlib inline
# Set the figure size in inches
plt.figure(figsize=(10,6))
plt.scatter(x, y, label = "label_name" )
# Set x and y axes labels
plt.xlabel('X Values')
plt.ylabel('Y Values')
plt.title('Scatter Title')
plt.legend()
plt.show()