如何在Dataframe(python)中扩展列大小

时间:2018-04-21 12:03:03

标签: python pandas dataframe

0           A      1,2

1           B       3

2           C      4, 5, 6….

我得到这样的表

df_F=pd.DataFrame(np.array(Data1).reshape(size,2),columns=list("AB"))
groupedF=df_F.groupby(['A'])['B'].apply(lambda x: ', '.join(x.astype(str))).reset_index()

我想要打印剩下的数字而不是点。

我目前的脚本是:

<script>

任何人都可以提供帮助。 提前谢谢。

0 个答案:

没有答案