Before | After |
---|---|
Ajout de clip_on = False
à plot
.
demo.py
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(4)
y = np.cos(x)
plt.plot(x, y, "o-", clip_on=False)
plt.xlim(0, 3)
plt.ylim(-1, 1)
Avec clip_on = False
, si vous faites une erreur en spécifiant la plage, cela se produira. En d'autres termes, clip_on = False
est dans un état où il est OK de sortir.
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(10)
y = np.cos(x)
plt.plot(x, y, "o-", clip_on=False)
plt.xlim(0, 3)
plt.ylim(-1, 1)
python - How do I let my matplotlib plot go beyond the axes? - Stack Overflow http://stackoverflow.com/questions/9912206/how-do-i-let-my-matplotlib-plot-go-beyond-the-axes
Recommended Posts