how to scatter plot in python code example
Example 1: how to plot a scatter plot in matplotlib
import matplotlib.pyplot as plt
%matplotlib inline
plt.figure(figsize=(10,6))
plt.scatter(x, y, label = "label_name" )
plt.xlabel('X Values')
plt.ylabel('Y Values')
plt.title('Scatter Title')
plt.legend()
plt.show()
Example 2: scatter plot of a dataframe in python
>>> ax2 = df.plot.scatter(x='length',
... y='width',
... c='species',
... colormap='viridis')
Example 3: plot scatter python
import numpy as np
np.random.seed(19680801)
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
for color in ['tab:blue', 'tab:orange', 'tab:green']:
n = 750
x, y = np.random.rand(2, n)
scale = 200.0 * np.random.rand(n)
ax.scatter(x, y, c=color, s=scale, label=color,