import numpy as np import matplotlib.pyplot as plt #Data creation x=np.arange(0,12,0.1) y=np.sin(x) plt.plot(x,y) plt.show()
With this alone, I was able to draw a graph of the sin function
Recommended Posts