繁体   English   中英

将 Pandas 数据帧转换为列表列表以输入到 RNN

[英]Converting a pandas dataframe to a list of lists for input into an RNN

在 Python 中,我有一个用pandas.read_csv导入的数据pandas.read_csv ,例如如下所示:

Cust_id| time_to_event_f |event_id |event_sub_id

1       100             5 2  
1       95              1 3  
1       44              3 1  
2       99              5 5  
2       87              2 2  
2       12              3 3  

数据按cust_idtime_to_event_f 我正在尝试将此数据帧转换为维度[2,3,3]的张量,以便对于每个客户 ID,我都有一个time_to_event_fevent_idevent_sub_id的顺序列表。 这个想法是将其用作张量流中 RNN 的输入。 我正在关注本教程,所以我试图以类似的格式获取我的数据。

您可以通过设置Cust_id索引然后堆叠将原始数据帧d转换为以客户 ID 为中心的系列:

d.set_index('Cust_id').stack()

结果系列将如下所示:

Cust_id                 
1        time_to_event_f    100
         event_id             5
         event_sub_id         2
         time_to_event_f     95
         event_id             1
         event_sub_id         3
         time_to_event_f     44
         event_id             3
         event_sub_id         1
2        time_to_event_f     99
         event_id             5
         event_sub_id         5
         time_to_event_f     87
         event_id             2
         event_sub_id         2
         time_to_event_f     12
         event_id             3
         event_sub_id         3
dtype: int64

鉴于这种表示,您的任务很简单: values ndarray 并将其重塑为您的目标大小:

series.values.reshape([2, 3, 3])

该数组可以作为 tensorflow RNN 的输入。 完整代码如下:

import pandas as pd
from io import StringIO

s = StringIO("""
1       100             5 2  
1       95              1 3  
1       44              3 1  
2       99              5 5  
2       87              2 2  
2       12              3 3
""".strip())

d = pd.read_table(s, names=['Cust_id', 'time_to_event_f', 'event_id', 'event_sub_id'], sep=r'\s+')
series = d.set_index('Cust_id').stack()
time_array = series.values.reshape([2, 3, 3])

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM