資料處理之欄位合併

純潔的程式碼發表於2020-03-16
# -*- coding: utf-8 -*-
#概念:欄位合併,是指將同一個資料框中的不同列,進行合併,形成新的列。欄位合併是前面學習的欄位拆分的逆操作
#欄位合併方法:x = x1 + x2 + ...
#限制:要求所有的列都是字元型資料(如果不是就需要轉換)
#返回值:Series 合併後的序列

from pandas import read_csv

df = read_csv("D:/python/workspace/pythonStudy/16.csv",sep=" ",names=["band","area","num"])

#匯入的資料都是數字,因此python會把它們當作數值型資料處理,所以要進行型別轉換
df = df.astype(str)

tel = df['band'] + df['area'] + df['num']

df['tel'] = tel

更多學習資料可關注gzitcast獲取(weiixn)

相關文章