by shigemk2

当面は技術的なことしか書かない

matplotlib tutorial

matplotlib tutorial

#coding: utf-8
import matplotlib.pyplot as plt
# plt.plot([1, 2, 3, 4]) #なだらか
# plt.plot([1, 2, 3, 4], [1, 4, 9, 16]) #(1,1)(2,4)(3,9)(4,16)
plt.plot([1, 2], [3, 4], [1, 4], [9, 16]) #なんかよくわからない

plt.ylabel('some numbers')
plt.show()

https://matplotlib.org/tutorials/introductory/pyplot.html#sphx-glr-tutorials-introductory-pyplot-py