Matplotlib Plot 2d Point

[Solved] Matplotlib Plot 2d Point | Basic - Code Explorer | yomemimo.com
Question : matplotlib plot 2d point

Answered by : tame-teira-ej47dqx9egfr

import numpy as np
import matplotlib.pyplot as plt
N = 50
x = np.random.rand(N)
y = np.random.rand(N)
plt.scatter(x, y)
plt.show()

Source : https://stackoverflow.com/questions/21519203/plotting-a-list-of-x-y-coordinates-in-python-matplotlib | Last Update : Wed, 14 Jul 21

Answers related to matplotlib plot 2d point

Code Explorer Popular Question For Basic