python - 在Python/Pandas中为每次多条记录的时间序列数据添加新的 'step'值列

标签 python python-3.x pandas dataframe time-series

我正在尝试分配一个新的 df 列“step”,其中 df['step'] 中每行的值不同列(“时间”)中每个唯一值的增量。时间列按升序排列,tag_id 的顺序并不重要。每个唯一时间戳可能有不同数量的唯一 tag_id 值,但所有时间值都是规则间隔的,即 00:00:00:05 间隔。

数据集看起来像这样,带有时间戳,并且每次都有多个具有 x 和 y 位置的唯一 tag_id。

    tag_id      x_pos      y_pos             time  
0        1  77.134000  70.651000         19:03:51 
1        2  66.376432  34.829683         19:03:51     
2        3  49.250835  37.848381         19:03:51     
3        1  50.108018   7.670564  19:03:51.050000     
4        2  54.919299  47.613906  19:03:51.050000     
5        3  57.584265  38.440233  19:03:51.050000     
6        1  47.862124  29.133489  19:03:51.100000     
7        2  71.092900  71.650500  19:03:51.100000     
8        3  65.704667  25.856978  19:03:51.100000     
9        1  62.680708  13.710716  19:03:51.150000     
10       2  65.673670  47.574349  19:03:51.150000     
11       3  77.134000  70.651000  19:03:51.150000     
12       1  66.410406  34.792751  19:03:51.200000     
13       2  49.306861  37.714626  19:03:51.200000     
14       3  50.142578   7.575307  19:03:51.200000     
15       1  54.940298  47.528109  19:03:51.250000     

我使用 df['time'] 中每个唯一值的掩码创建了以下函数,它有效,但速度非常慢(原始数据集约为 500,000 条记录,有 41,000 个唯一时间)。

# after adding step column by:
# df['step'] = 0

def timeToSteps(df):
    count = 0
    for t in df['time'].unique():
        mask = df['time'].values == t
        df.loc[mask, ['step']] = count
        count += 1

给予:

    tag_id      x_pos      y_pos             time  step  
0        1  77.134000  70.651000         19:03:51     0
1        2  66.376432  34.829683         19:03:51     0
2        3  49.250835  37.848381         19:03:51     0
3        1  50.108018   7.670564  19:03:51.050000     1
4        2  54.919299  47.613906  19:03:51.050000     1
5        3  57.584265  38.440233  19:03:51.050000     1
6        1  47.862124  29.133489  19:03:51.100000     2
7        2  71.092900  71.650500  19:03:51.100000     2
8        3  65.704667  25.856978  19:03:51.100000     2
9        1  62.680708  13.710716  19:03:51.150000     3
10       2  65.673670  47.574349  19:03:51.150000     3
11       3  77.134000  70.651000  19:03:51.150000     3
12       1  66.410406  34.792751  19:03:51.200000     4
13       2  49.306861  37.714626  19:03:51.200000     4
14       3  50.142578   7.575307  19:03:51.200000     4
15       1  54.940298  47.528109  19:03:51.250000     5

有没有更有效的方法来实现这个结果?谢谢!

最佳答案

试试这个

import numpy as np
import pandas as pd

df = pd.read_csv('data.txt', delim_whitespace=True, parse_dates=['time'])
df['step'] = df['time']-df['time'].shift(1)     #shift index and find difference
zero = np.timedelta64(0, 's')       
df['step'][0] = np.timedelta64(0, 's')          #change first var from naT to zero
df['step'] = df['step'].apply(lambda x: x>zero).cumsum()
print(df)

产生

    tag_id      x_pos      y_pos                    time  step
0        1  77.134000  70.651000 2020-02-16 19:03:51.000     0
1        2  66.376432  34.829683 2020-02-16 19:03:51.000     0
2        3  49.250835  37.848381 2020-02-16 19:03:51.000     0
3        1  50.108018   7.670564 2020-02-16 19:03:51.050     1
4        2  54.919299  47.613906 2020-02-16 19:03:51.050     1
5        3  57.584265  38.440233 2020-02-16 19:03:51.050     1
6        1  47.862124  29.133489 2020-02-16 19:03:51.100     2
7        2  71.092900  71.650500 2020-02-16 19:03:51.100     2
8        3  65.704667  25.856978 2020-02-16 19:03:51.100     2
9        1  62.680708  13.710716 2020-02-16 19:03:51.150     3
10       2  65.673670  47.574349 2020-02-16 19:03:51.150     3
11       3  77.134000  70.651000 2020-02-16 19:03:51.150     3
12       1  66.410406  34.792751 2020-02-16 19:03:51.200     4
13       2  49.306861  37.714626 2020-02-16 19:03:51.200     4
14       3  50.142578   7.575307 2020-02-16 19:03:51.200     4
15       1  54.940298  47.528109 2020-02-16 19:03:51.250     5

关于python - 在Python/Pandas中为每次多条记录的时间序列数据添加新的 'step'值列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60252983/

相关文章:

python - pandas读取没有标题的txt文件

python - 将字典列表的字典转换为数据框

python - 在 Python 中的 scipy/numpy 中计算 2D 矩阵的 z 分数

python - 在针对官方 python :3 docker image? 的 Dockerfile 中使用的 python 脚本中使用的正确 shebang 是什么

python - 如何禁用 "Save Password for this website"Selenium Python 语法

python - 使用类名在Python中设置描述符属性的值

python - 如何获得按 numpy 和 pandas 中的变量分组的平均值?

Python : file. 寻找(10000000000、2000000000)。 Python int 太大而无法转换为 C long

Python单元测试突然退出

不是 **kwargs 而是在函数调用本身上使用的 Python 双星号