查看“Matplotlib”的源代码
←
Matplotlib
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
*创建不同的图表 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) *对数坐标 :semilogx #x轴对数 :semilogy #y轴对数 :set_xscale("log", nonposx='clip') :set_yscale("log", nonposy='clip') * 误差棒 :errorbar(x, y, xerr=0.1 * x, yerr=5.0 + 0.75 * y) *grid :ax.grid() *设置坐标轴的极限 :ax.set_ylim(ymin=0.1) 参见[https://matplotlib.org/gallery/scales/log_demo.html]
返回至“
Matplotlib
”。
导航菜单
个人工具
登录
命名空间
页面
讨论
大陆简体
已展开
已折叠
查看
阅读
查看源代码
查看历史
更多
已展开
已折叠
搜索
导航
首页
社群首页
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息