⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 matplotlib_icon.py

📁 非原创。很好的python例子
💻 PY
字号:
#!/usr/bin/env python"""make the matplotlib svg minimization icon"""import matplotlibmatplotlib.use('SVG')from pylab import *rc('grid', ls='-', lw=2, color='k')fig = figure(figsize=(1, 1), dpi=72)axes([0.025, 0.025, 0.95, 0.95], axisbg='y')t = arange(0, 2, 0.05)s = sin(2*pi*t)plot(t,s, linewidth=4)axis([-.2, 2.2, -1.2, 1.2])grid(True)setp(gca(), xticklabels=[], yticklabels=[])#savefig('../images/matplotlib.svg', facecolor=0.75)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -