アットウィキロゴ

ex2 py

import numpy as np
from matplotlib import pyplot
x = np.array([1, 2, 3])
y=x+3
pyplot.plot(x, y)
pyplot.title('My first graph')
pyplot.xlabel('Time (fortnights)')
pyplot.ylabel('Distance (furlongs)')
pyplot.show()
最終更新:2017年12月01日 05:19