Pandas Dataframe操作技巧

轉載自勤奮的小青蛙 1:原有列基礎生成新列 常見使用情景:兩列相減的值爲新的一列,或者多列操作生成新的一列 技巧: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 import pandas as pd   # make a simple dataframe df = pd.DataFrame({'a':[1,2], 'b':[3,4]}) d
相關文章
相關標籤/搜索