pandas groupby表示非缺失值

时间:2018-05-23 20:56:02

标签: python pandas

我有这样的df。

Command 'ffmpeg -i sampleVideo.wmv -vf fps=1 frame-%d.jpg' returned non-zero exit status 1

但如果它是np.nan

,我不想加入列值
>>> df
    c1  t1      c2
0  NaN  20     xyz
1  NaN  20  x1y1z1
2  NaN  20     NaN
>>> df.groupby(['t1'], as_index=False).agg(lambda x: ';'.join(x.astype(str)))
  t1           c1              c2
0  20  nan;nan;nan  xyz;x1y1z1;nan

如何在这里完成这项检查?

谢谢

0 个答案:

没有答案