如何使用熊猫将多列合并为一列?

时间:2019-06-26 14:00:05

标签: pandas

我想将多列合并为一列。

我的列标签分别命名为“ comments”,“ comment1”和“ comment2”。在这些列的每一列中,我都希望将这些值连接在一起成为一列。

下面是我的熊猫df外观的示例。

“名称”,“注释”,“注释1”,“注释2”都是单独的列。

我的目标是将所有值存储在一个列中。

Name            Comment                               Comment1        Comment2 
Tyler           No antibiotics                        given          to student. 
Halsey          21 year old                           received       prescriptions
Jamison         No medications given to student today NaN            NaN 

看起来像这样:

Name             Comment
Tyler            No antibiotics given to student. 
Halsey           21 year old received prescriptions
Jamison          No medications given to student today. 

我也希望消除NaN值。

0 个答案:

没有答案