注解
Click here 下载完整的示例代码
新增0.98.4传奇¶
创建一个图例,并用阴影和方框对其进行调整。
import matplotlib.pyplot as plt
import numpy as np
ax = plt.subplot(111)
t1 = np.arange(0.0, 1.0, 0.01)
for n in [1, 2, 3, 4]:
plt.plot(t1, t1**n, label=f"n={n}")
leg = plt.legend(loc='best', ncol=2, mode="expand", shadow=True, fancybox=True)
leg.get_frame().set_alpha(0.5)
plt.show()

工具书类¶
以下函数、方法、类和模块的使用如本例所示:
出:
<function Legend.get_frame at 0x7faa00e5f6a8>
关键词:matplotlib代码示例,codex,python plot,pyplot Gallery generated by Sphinx-Gallery