python如何画多个纵坐标_如何在matplotlib中绘制多个X或Y轴?

本文介绍了如何在matplotlib中创建并调整多个Y轴,展示实验数据。通过自定义spines和annotate函数,可以为不同组别的数据添加独立的纵坐标和注释。示例代码详细演示了创建第二个底部Y轴及其标签的过程。
摘要由CSDN通过智能技术生成

首先,很酷的问题!matplotlib>=1.0.0绝对有可能。(新的spines功能允许它)

它需要一点巫毒,尽管。。。我的例子远非完美,但希望它有一定的意义:import numpy as np

import matplotlib.pyplot as plt

import matplotlib as mpl

def main():

#-- Generate some data ----------------------------------------------------

nx = 10

x = np.linspace(0, 2*np.pi, 10)

y = 2 * np.sin(x)

groups = [('GroupA', (x[0], x[nx//3])),

('GroupB', (x[-2*nx//3], x[2*nx//3])),

('GroupC', (x[-nx//3], x[-1]))]

#-- Plot the results ------------------------------------------------------

fig = plt.figure()

ax = fig.add_subplot(111)

# Give ourselves a bit more room at the bottom

plt.subplots_adjust(bottom=0.2)

ax.plot(x,y, 'k^')

# Drop the bottom spine by 40 pts

ax.spines['

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值