Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 136 Bytes

File metadata and controls

12 lines (8 loc) · 136 Bytes

python으로 차트 그리기

import matplotlib.pylab as plt

x = [1, 2, 3]
y = [1, 2, 3]

plt.plot(x, y)
plt.show()