Matplotlib - Real-World Visualization Patterns
Identify the error in this code snippet:
import matplotlib.pyplot as plt
plt.plot([1,2,3], [4,5,6])
plt.annotate('Point', xytext=(2,5), xy=(2,5))
plt.show()