计算同一列中连续行之间的差异

时间:2019-06-23 04:25:38

标签: python for-loop array-difference

我正在尝试计算Timestamp列中连续行之间的差异。根据我的逻辑,我收到以下错误:

我的日志变量中包含如下数据:

['Timestamp:', '1546626931.138813', 'ID:', '0764', 'S', 'DLC:', '8', 00', '00', '00', '00', '00', '00', '00', '00', 'Channel:', '0']
['Timestamp:', '1546626931.138954', 'ID:', '0365', 'S', 'DLC:', '8', 00', '00', '00', '80', 'db', '80', 'a2', '7f', 'Channel:', '1']
['Timestamp:', '1546626931.139053', 'ID:', '0765', 'S', 'DLC:', '8', '0d', '0f', '00', '00', 'fd', '0e', '00', '01', 'Channel:', '1']
['Timestamp:', '1546626931.139289', 'ID:', '0766', 'S', 'DLC:', '8', 'fd', '0e', '02', '01', 'fc', '0e', '03', '01', 'Channel:', '1']
.
.
.
.

代码是:

import can
import csv
import datetime
import pandas


filename = open('C:\\Users\\xyz\\Downloads\\BLF File\\output.csv', "w")
log = can.BLFReader('C:\\Users\\xyz\\Downloads\\BLF File\\test.blf')

log_output = []
timestamp = []                        #Variable to store timestamps from blf file
time_del = []                         #Variable to store time difference
print('We are here 1')
for time in log:
    time = str(time).split()
    timestamp.append(float(time[1]))
    # print(timestamp)

print("we are here 2")
count = 0

for i in range(len(timestamp)-1):
    delta_float= timestamp[count+1] - timestamp[count]
    count = count + 1
print(delta_float)

我得到以下输出:

We are here 1
we ar here 2
0.00022101402282714844
0.0002288818359375
0.00021910667419433594
0.00024199485778808594
.
.
.
.

为什么我在delta_float中没有得到正确的区别?我应该基于log变量中的值获得类似下面的内容,对吧?

0.141
0.99
0.236
.
.

为什么这种逻辑不能给我同一列Timestamp中连续行之间的区别?

1 个答案:

答案 0 :(得分:1)

您只打印一个值,因为您只有一个print语句(不计算“我们在这里”的语句),它不在循环主体中,并且正在打印标量值。您必须更改其中至少一项,可能要更改第二项以完成所需的操作,以使其打印多个值。