pandas使用小技巧--那些不爲注意的默認參數

1.按行插入 aa =pd.DataFrame([1,2,3]) aa    0 0  1 1  2 2  3  app aa.append([4])    0 0  1 1  2 2  3 0  4  this aa.append([4],ignore_index=True)    0 0  1 1  2 2  3 3  4orm 2.定位到某行某列 aa.at[0,0]string 1it 3
相關文章
相關標籤/搜索