Matplotlib - Real-World Visualization Patterns
What will be the output arrangement of the following code?
import matplotlib.pyplot as plt
plt.subplot(2, 1, 1)
plt.title('Top Plot')
plt.subplot(2, 1, 2)
plt.title('Bottom Plot')
plt.show()