从列表生成具有不同长度的数据帧

时间:2018-04-18 04:28:45

标签: python pandas dataframe

我在这里得到了许多不同长度的列表,例如mov ecx, offset hello_msga=[1,2,3]

我想通过在列表末尾填充b=[2,3]来生成pd.DataFrame,如下所示:

nan

有什么好主意可以帮我这么做吗?

1 个答案:

答案 0 :(得分:6)

使用

In [9]: pd.DataFrame({'a': pd.Series(a), 'b': pd.Series(b)})
Out[9]:
   a    b
0  1  2.0
1  2  3.0
2  3  NaN

或者,

In [10]: pd.DataFrame.from_dict({'a': a, 'b': b}, orient='index').T
Out[10]:
     a    b
0  1.0  2.0
1  2.0  3.0
2  3.0  NaN