Additionally, I apologize if there are any errors or if the translations do not perfectly capture the intended meaning.)
pip install pandas
pip install matplotlib
python
import pandas as pd
import matplotlib.pyplot as plt
python
data = pd.read_csv('data.csv')
python
plt.plot(data['X'], data['Y'])
plt.show()
python
plt.scatter(data['X'], data['Y'])
plt.show()
python
plt.bar(data['X'], data['Y'])
plt.show()
python
plt.pie(data['Y'], labels=data['X'])
plt.show()
python