Comment tracer le graphique à l'aide du fichier CSV dans Python
import matplotlib.pyplot as plt
import numpy as np
dataArray = np.genfromtxt('data.csv', delimiter=',', names=True)
plt.figure()
for col_name in dataArray.dtype.names:
plt.plot(dataArray[col_name], label=col_name)
plt.legend()
plt.show()
Spotless Stoat