Answers for "plot x y scatterplot python"

1

how to do scatter plot in pyplot

import numpy as npimport matplotlib.pyplot as plt
# Create data
N = 500x = np.random.rand(N)
y = np.random.rand(N)
colors = (0,0,0)
area = np.pi*3
# Plot
plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.title('Scatter plot pythonspot.com')
plt.xlabel('x')
plt.ylabel('y')
plt.show()
Posted by: Guest on August-29-2020
0

add x=y line to scatter plot python

xpoints = ypoints = plt.xlim()
plt.plot(xpoints, ypoints, linestyle='--', color='k', lw=3, scalex=False, scaley=False)
Posted by: Guest on February-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language