mirror of
https://github.com/Estom/notes.git
synced 2026-07-09 23:26:25 +08:00
matplotlib & pandas
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
# 文本自动换行
|
||||
|
||||
Matplotlib can wrap text automatically, but if it's too long, the text will be displayed slightly outside of the boundaries of the axis anyways.
|
||||
|
||||

|
||||
|
||||
```python
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
fig = plt.figure()
|
||||
plt.axis([0, 10, 0, 10])
|
||||
t = ("This is a really long string that I'd rather have wrapped so that it "
|
||||
"doesn't go outside of the figure, but if it's long enough it will go "
|
||||
"off the top or bottom!")
|
||||
plt.text(4, 1, t, ha='left', rotation=15, wrap=True)
|
||||
plt.text(6, 5, t, ha='left', rotation=15, wrap=True)
|
||||
plt.text(5, 5, t, ha='right', rotation=-15, wrap=True)
|
||||
plt.text(5, 10, t, fontsize=18, style='oblique', ha='center',
|
||||
va='top', wrap=True)
|
||||
plt.text(3, 4, t, family='serif', style='italic', ha='right', wrap=True)
|
||||
plt.text(-1, 0, t, ha='left', rotation=-15, wrap=True)
|
||||
|
||||
plt.show()
|
||||
```
|
||||
|
||||
## 下载这个示例
|
||||
|
||||
- [下载python源码: autowrap.py](https://matplotlib.org/_downloads/autowrap.py)
|
||||
- [下载Jupyter notebook: autowrap.ipynb](https://matplotlib.org/_downloads/autowrap.ipynb)
|
||||
Reference in New Issue
Block a user