0
A
回答
2
看着matplotlib spine placement demo你會發現你可以使用ax.spines['left'].set_position('zero')
來移動刺。
import matplotlib.pyplot as plt
import numpy as np
import seaborn as sns
x = np.linspace(-3,3)
y = x**2
fig, ax = plt.subplots()
ax.set_ylim(-4,10)
ax.set_xlim(-10,10)
ax.plot(x, y)
ax.spines['left'].set_position('zero')
ax.spines['right'].set_color('none')
ax.spines['bottom'].set_position('zero')
ax.spines['top'].set_color('none')
plt.show()
相關問題
- 1. 沿着世界座標軸旋轉
- 2. matplotlib mac OSX 10.8中斷標記和座標軸標記
- 3. matplotlib:更改座標軸
- 4. 3D沿着一個歪斜變換矩陣座標軸
- 5. 用matplotlib x軸標記
- 6. Highcharts記錄座標軸2
- 7. Matplotlib與plyplot.subplot()命令共享座標軸?
- 8. 在matplotlib中移動座標軸文本
- 9. 刪除matplotlib子圖中的座標軸?
- 10. 座標軸中的按鈕(matplotlib)
- 11. 在matplotlib中翻轉座標軸grafic
- 12. 在matplotlib中設置一個座標軸
- 13. Matplotlib極座標圖的反徑向軸
- 14. python matplotlib:轉置座標軸的方法
- 15. 蟒蛇座標軸繪圖 - matplotlib
- 16. matplotlib座標軸上的不同精度
- 17. Matplotlib:着色軸/刻度標籤
- 18. 使用Canvas標記圖形座標軸
- 19. 在座標軸上繪製標記
- 20. 沿着它的圓圈刪除標記
- 21. 座標軸標記和多點座標中的刻度
- 22. Matplotlib軸標籤
- 23. Papervision3D座標軸
- 24. Matplotlib X-標籤數座標
- 25. 用matplotlib中的文本標註座標軸
- 26. 在matplotlib中更改座標軸的顏色,刻度和標籤
- 27. matplotlib極座標圖科學記數法
- 28. matplotlib座標格式
- 29. Matplotlib設定座標
- 30. matplotlib GUI imshow座標
感謝您的幫助和鏈接! –