摘要:
pandas有用的笔记 import pandas as pdimport numpy as npimport matplotlib.pyplot as plt%matplotlib inlineimport replt.style.use("ggplot") 显示中文:plt.rcParams[' 阅读全文
摘要:
df.rename('a_name','b_name') df.columns=(columns={'acolumn':'b-column'}) 一:分组;分组,就是第一层查询条件我想 根据什么分组,它的index就是什么 df.groupby(df.animal)['weight'].mean() 阅读全文