Files
notes_estom/Python/matplotlab/gallery/scales/aspect_loglog.md
2020-09-26 22:03:11 +08:00

31 lines
784 B
Markdown

# 双对数
![双对数示例](https://matplotlib.org/_images/sphx_glr_aspect_loglog_001.png)
```python
import matplotlib.pyplot as plt
fig, (ax1, ax2) = plt.subplots(1, 2)
ax1.set_xscale("log")
ax1.set_yscale("log")
ax1.set_xlim(1e1, 1e3)
ax1.set_ylim(1e2, 1e3)
ax1.set_aspect(1)
ax1.set_title("adjustable = box")
ax2.set_xscale("log")
ax2.set_yscale("log")
ax2.set_adjustable("datalim")
ax2.plot([1, 3, 10], [1, 9, 100], "o-")
ax2.set_xlim(1e-1, 1e2)
ax2.set_ylim(1e-1, 1e3)
ax2.set_aspect(1)
ax2.set_title("adjustable = datalim")
plt.show()
```
## 下载这个示例
- [下载python源码: aspect_loglog.py](https://matplotlib.org/_downloads/aspect_loglog.py)
- [下载Jupyter notebook: aspect_loglog.ipynb](https://matplotlib.org/_downloads/aspect_loglog.ipynb)