mirror of
https://github.com/Estom/notes.git
synced 2026-02-06 12:04:05 +08:00
29 lines
804 B
Markdown
29 lines
804 B
Markdown
# Frontpage 绘图示例
|
|
|
|
此示例再现Frontpage 绘图示例。
|
|
|
|

|
|
|
|
```python
|
|
import matplotlib.pyplot as plt
|
|
import matplotlib.cbook as cbook
|
|
import numpy as np
|
|
|
|
|
|
with cbook.get_sample_data('membrane.dat') as datafile:
|
|
x = np.fromfile(datafile, np.float32)
|
|
# 0.0005 is the sample interval
|
|
|
|
fig, ax = plt.subplots()
|
|
ax.plot(x, linewidth=4)
|
|
ax.set_xlim(5000, 6000)
|
|
ax.set_ylim(-0.6, 0.1)
|
|
ax.set_xticks([])
|
|
ax.set_yticks([])
|
|
fig.savefig("membrane_frontpage.png", dpi=25) # results in 160x120 px image
|
|
```
|
|
|
|
## 下载这个示例
|
|
|
|
- [下载python源码: membrane.py](https://matplotlib.org/_downloads/membrane.py)
|
|
- [下载Jupyter notebook: membrane.ipynb](https://matplotlib.org/_downloads/membrane.ipynb) |