考慮以下DataFrame:
from pandas import * df = DataFrame({'foo':['a','b','c'], 'bar':[1, 2, 3]})
此DataFrame 看起來像:
bar | foo |
---|---|
1 | a |
2 | b |
3 | c |
此DataFrame 看起來像:
df['bar'] = df.bar.map(str) + " is " + df.foo
要將「foo」和「bar」列中的值連接到單一欄位中,請使用下列程式碼:
bar |
---|
1 is a |
2 is b |
3 is c |
以上是如何連接 Pandas DataFrame 中的兩列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!