import numpy as np
import matplotlib.pyplot as plt
# init data
x = np.arange(0, 6 , 0.1)
y = np.sin(x)
# draw graph
plt.plot(x, y)
plt.show()
y1 = np.sin(x)
y2 = np.cos(x)
# draw graph
plt.plot(x, y1, label="sin")
plt.plot(x, y2, linestyle="--", label="cos")
plt.xlabel("x")
plt.ylabel("y")
plt.title('sin & cos')
plt.legend()
plt.show()
from matplotlib.image import imread
img = imread('./test_image.jpg')
plt.imshow(img)
plt.show()