Matplotlib - Real-World Visualization Patterns
What is wrong with this code?
import matplotlib.pyplot as plt
plt.plot([1,2,3], [3,2,1])
plt.annotate('Low', xy=(2,2), xytext=(3,1), arrowprops='->')
plt.show()