Before | After |
---|---|
Clip_on = False
zu plot
hinzugefügt.
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)
Wenn Sie mit clip_on = False
einen Fehler bei der Angabe des Bereichs machen, geschieht dies. Mit anderen Worten, clip_on = False
befindet sich in einem Zustand, in dem es in Ordnung ist, hervorzustechen.
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