Answers for "scatter plot of two arrays python"

1

how to scatter plot in matplotlib of two sets

import matplotlib.pyplot as plt
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax1.scatter(x1, y1, s = 10, c = 'b', label = 'elbow')
ax1.scatter(x2, y2, s = 10, c = 'r', label = 'shoulder')
plt.legend(loc='upper left');
plt.show()
Posted by: Guest on July-10-2021
0

scatter matrix plot

pd.plotting.scatter_matrix(
    df[["col1", "col2", "col3"]],
    figsize = (15, 15),
    diagonal = "kde")
plt.show()
Posted by: Guest on December-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language