pandas的增刪改查和分區分桶

#讀取文件 temp = pd.read_excel(r'E:\ETL_soft\python\bool.xlsx') #返回幾行數據記錄 temp[:6] #新生成一列 temp['tip_pct']=temp['tip']/temp['total_bill'] temp[:6] #根據分組選出最高的5個tip_pct值 def top(temp,n=5,column='tip_pct'):
相關文章
相關標籤/搜索