--Je veux comparer deux parcelles
dual_plot.py
import matplotlib.pyplot as plt
fig, ax1 = plt.subplots()
ax1.plot(data1)
ax2 = ax1.twinx() #Associer deux parcelles
ax2.plot(data2)
plt.show()
――Cela fait du bien car la position du pic et la position du pas se chevauchent.
Recommended Posts