Matplotlib

来自Shiyin's note
Shen讨论 | 贡献2017年11月9日 (四) 09:14的版本 (创建页面,内容为“*创建不同的图表 plt.figure(1) # 创建图表1 plt.figure(2) # 创建图表2 *同一图表上面不同的panel plt.subplot(211) # 在图表2中创建子图1...”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索
  • 创建不同的图表
plt.figure(1) # 创建图表1
plt.figure(2) # 创建图表2
  • 同一图表上面不同的panel
plt.subplot(211) # 在图表2中创建子图1
plt.subplot(212) # 在图表2中创建子图2
  • 初始化 clear
plt.clf()
  • Tweak spacing to prevent clipping of ylabel
plt.tight_layout()

plot

  • 直方图 num_bins = 50
fig, ax = plt.subplots()
# the histogram of the data
n, bins, patches = ax.hist(x, 50, normed=1)