• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    完美解决matplotlib子图坐标轴重叠问题

    绘制matplotlib多个图形于一张图时往往会出现相邻图坐标轴重叠的现象

    此时只须在汇完所有子图后加上以下代码即可

    plt.tight_layout()

    补充:解决matplotlib横坐标日期过长导致的重叠、无法完全显示问题(换行)

    该方法较为繁杂,主要是将年月日和时间分开,通过使用plt.text根据坐标位置将年月日重新加上,前面是为了进行时间转化,

    有用的代码为

    > plt.text(zb[link],-1.2,year,ha='center')#需要根据自己的位置调整Y的坐标即调整-1

    完整程序:

    import matplotlib.pyplot as plt
    import pandas as pd
    import numpy as np
    plt.rcParams['font.sans-serif']=['SimHei'] #用来正常显示中文标签
    plt.rcParams['axes.unicode_minus']=False #用来正常显示负号
    time1 =input("输入一个时间(时、分、秒以空格分割):")
    year = input('请输入年份,格式如 2019-8-30 :')
    n = input('请输入X轴分段数:')
    old_time_x = []
    time1List = time1.split(" ")
    time1List = [int(x) for x in time1List]
    '''时间转化'''
    shi = time1List[0]
    fen = time1List[1]
    miao = time1List[2]
    for x in range(eval(n)+1):
        time_x = '%02d:%02d:%02d'%(shi,fen,miao)
        old_time_x.append(time_x)
        miao += 60
        while miao >= 60:
            miao = miao - 60
            fen += 1
            while fen >= 60:
                fen = fen -60
                shi += 1
                while shi > 24:
                    shi = shi - 24
    print(old_time_x)
    x = np.arange(0,10,1)
    y = np.arange(0,10,1)
    fig = plt.figure(figsize=(12,6)) 
    plt.xticks(np.linspace(0,9,eval(n)),old_time_x,rotation=0)
    zb = np.linspace(0,9,eval(n))
    print(zb)
    for link in range(len(zb)):
        plt.text(zb[link],-1.2,year,ha='center')#需要根据自己的位置调整Y的坐标即调整-1
    plt.plot(x,y)

    以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

    您可能感兴趣的文章:
    • python使用matplotlib:subplot绘制多个子图的示例
    • matplotlib subplot绘制多个子图的方法示例
    • matplotlib 画双轴子图无法显示x轴的解决方法
    • python matplotlib画盒图、子图解决坐标轴标签重叠的问题
    • matplotlib绘制多个子图(subplot)的方法
    • Python数据分析matplotlib设置多个子图的间距方法
    • matplotlib subplots 调整子图间矩的实例
    • matplotlib之pyplot模块实现添加子图subplot的使用
    上一篇:Python 通过分隔符分割文件后按特定次序重新组合的操作
    下一篇:Python 作图实现坐标轴截断(打断)的效果
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    完美解决matplotlib子图坐标轴重叠问题 完美,解决,matplotlib,子,图,