1import matplotlib.pyplot as plt
2
3fig, axs = plt.subplots(1, 2)
4axs[0].set_title('TITLE1')
1import matplotlib.pyplot as plt
2
3plt.plot(x, y, color='green')
4plt.xlabel('x')
5plt.ylabel('y')
6
7# displaying the title
8plt.title("Linear graph")
9
10plt.show()
11