Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/simulation/fixtures/notebook/edits/plot.ipynb
13405 views
Kernel: Unknown Kernel
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()