mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-20 16:23:02 +01:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
512 B
512 B
In [ ]:
import matplotlib.pyplot as plt
# Generate sample data
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.figure(figsize=(6, 4))
plt.plot(x, y, label='Linear Growth')
plt.legend()
plt.show()