pandas

python
      pandas基本函數
   
   
      查看數據
      .head() .tail() .shape .describe()
   
   
      矩陣運算
      .add() .sub() .mul() .div() .divmod() .combine()
   
   
      矩陣比較
      .eq() .ne() .lt() .gt() .le() .ge()|.empty .any() .all() .bool()
   
   
      數據框連接
      .align() .merge() .join() .concatenate()
   
   
      設置行名列名
      .column .reindex() .reindex_like()|.rename()
   
   
      列操作
      .drop() .insert() .assign()
   
   
      數據類型
      .dtypes .get_dtype_counts() .astype() .to_numeric()… .select_dtypes()
   
   
      數據運算
      .pipe() .apply() .applymap()
   
   
      統計運算
      .cut() .qcut() .idxmin() .idxmax() .value_counts() .sum()…
   
   
      排序
      .sort_index() .sort_values() .nsmallest() .nlargest()
   
   
      其他
      .dt Iteration .copy() .info()
 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章