Python绘制多条y轴范围不同的曲线并在一张图上显示

该代码示例展示了如何在Python中使用matplotlib库绘制多条具有不同y轴范围的曲线,并将它们合并到同一张图表上显示。通过创建多个共享x轴的y轴(twinx()),每条曲线可以有不同的颜色和标签,并且可以在图表上设置合适的标签和图例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

如何使用Python绘制多条y轴范围不同的曲线,然后把它们合并在一张图上显示

import matplotlib.pyplot as plt
import numpy as np

def multilines(target, x, ys, types, colors, x_label, labels):
    """
    用来绘制多条y轴范围不同的线,并在一张图上显示
    """
    # fig, ax = plt.subplots(figsize=(16, 4), dpi=200)
    # fig.subplots_adjust(left=0.2)
    twins = []
    twins.append(target[0])
    p = []
    for i in range(len(ys) - 1):
        twins.append(target[0].twinx())
    for i, label in enumerate(labels):
        temp_p, = twins[i].plot(x, ys[i], types[i], color=colors[i], label=label)
        p.append(temp_p)

    twins[0].set_xlabel(x_label)
    # twins[0].tick_params(axis='x', labelsize=20)
    pad = 0
    twin_lines = []
    twin_labels = []
    for i, twin in enumerate(twins):
        twin.set_ylabel(labels[i])
        twin.yaxis.set_label_position('left')
        twin.yaxis.set_ticks_position('left')
        twin.yaxis.label.set_color(p[i].get_color())
        twin.tick_params(axis='y', colors=p[i].get_color(), pad=pad)
        pad += 60
        temp_line, temp_label = twin.get_legend_handles_labels()
        twin_lines.append(temp_line)
        twin_labels.append(temp_label)
    final_line = twin_lines[0]
    final_label = twin_labels[0]
    for i in range(len(twin_lines) - 1):
        final_line += twin_lines[i + 1]
        final_label += twin_labels[i + 1]
    twins[0].legend(final_line, final_label, loc='best')


if __name__ == '__main__':
    x = np.linspace(0, 10, 100)
    y1 = np.sin(x)
    y2 = 2 * np.cos(x)
    y3 = 0.5 * np.tan(x)
    fig, ax = plt.subplots(figsize=(16, 4), dpi=200)
    fig.subplots_adjust(left=0.2)
    multilines([ax], x, [y1, y2, y3], ['r-', 'b-', 'g-'], ['red', 'blue', 'green'], 'depth', ['y1', 'y2', 'y3'])
    plt.show()

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值