Files
vscode/extensions/copilot/test/simulation/fixtures/notebook/plot.ipynb
T
2025-06-27 11:35:20 +02:00

590 B

In [ ]:
import pandas as pd

# create a dataframe with sample data
df = pd.DataFrame({'Name': ['Alice', 'Bob', 'Charlie'], 'Age': [25, 30, 35], 'Gender': ['F', 'M', 'M']})
print(df)
In [ ]: