使用matplotlib库绘制列表(顺序不一)时如何校正y间隔?

时间:2019-06-13 17:07:29

标签: python matplotlib text-files graphing

绘制时y值不正确

COLst3是不按顺序排列的数字的列表。样本COLst3列表:

['312', '313', '313', '312', '311', '313', '311', '311', '311', '310']

x轴是时间,y轴是COLst3。 创建的空列表用于创建x个值点。

我需要帮助,以一致的y间隔正确绘制值。

import time
import matplotlib.pyplot as plt
import numpy as np

def COfunction():
    x=0
    z=1
    y=60 #change y according to the estimated number of CO values recorded
    COLst = []
    COLst3 = []
    empty = []

    while x < y: 
        open_file=open(r'C:\Users\MindStorm\Desktop\capture.txt','r')
        file_lines=open_file.readlines()
        file = file_lines[x].strip()  # First Line
        COLst = file.split()
        COLst2 = COLst.pop(1)
        COLst3.append(COLst2)
        empty.append(z)
        x += 6
        z += 1

    #plots using matplotlib library
    plt.title('CO Displacement value Graph')
    plt.xlabel('Time(seconds)')
    plt.ylabel('Sensor values(volts)')
    plt.plot(empty, COLst3)
    plt.show()

#main functions
COfunction()

代码成功运行,但是我需要正确的y值间隔才能绘制两个列表。

Matplotlib版本:2.2.3

Result

1 个答案:

答案 0 :(得分:0)

问题在于您的值是字符串,这就是为什么它们不规则的原因。分别使用intfloat将它们转换为整数或浮点型。

COLst3 = ['312', '313', '313', '312', '311', '313', '311', '311', '311', '310']
COLst3 = list(map(int, COLst3)) # <--- Convert strings to integer

empty = range(len(COLst3))

plt.title('CO Displacement value Graph')
plt.xlabel('Time(seconds)')
plt.ylabel('Sensor values(volts)')
plt.plot(empty, COLst3)
plt.yticks(range(min(COLst3), max(COLst3)+1)) # <--- To show integer tick labels
plt.show()

enter image description here