1.pd.value_count():帶入數值能夠計算出value有多少的類別python
#獲得類別的降序 tips['day'].value_counts(sort=True,ascending=True)
2.sort_values()(按照數值進行排列)/sort_index()(對index/columns的大小進行排列),其中axis=0是默認的值,表明值列函數
3.reshape():這個是numpy的一個函數,咱們能夠先把Dataframe.values轉換爲矩陣再用,一個2*3的Dataframe變成一個shape爲(5,1)的dateframe,能夠直接用data.reshape(-1,1),其中的-1是自動識別的意思.blog
4.drop('columns',axis=1)刪除行,可是不是在原來的數據作,而是返回結果.索引
5.idxmax()返回所在的行或是列的最大值的索引ip
6.unique()返回獨一無二的值class