Matplotlib - Real-World Visualization Patterns
Find the bug in this ranking chart code:
import matplotlib.pyplot as plt values = [8, 6, 9] values = values.sort() plt.bar(range(len(values)), values) plt.show()
