pandas的DataFrame中sort_values isin的使用實例

零下一度
發布: 2017-05-25 11:16:46
原創
4669 人瀏覽過

1.在pandas的DataFrame中,我們常常需要根據某屬性來選取指定條件的行,這時isin方法就特別有效。

import pandas as pd
df = pd.DataFrame([[1,2,3],[1,3,4],[2,4,3]],index = ['one','two','three'],columns = ['A','B','C'])
print df
#        A  B  C
# one    1  2  3
# two    1  3  4
# three  2  4  3
登入後複製

這時假設我們選取A列中值為1的行,

mask = df['A'].isin([1]) #括号中必须为list
print mask
# one       True
# two       True
# three    False
# Name: A, dtype: bool
print df[mask]
#      A  B  C
# one  1  2  3
# two  1  3  4
登入後複製

2.pandas中的DataFrame如何按第一個關鍵字,第二關鍵字對其進行排序,這裡可以使用 #sort_values,舊版中為sort_index。

import pandas as pd
df = pd.DataFrame([[1,2,3],[2,3,4],[2,4,3],[1,3,7]],
                  index = ['one','two','three','four'],columns = ['A','B','C'])
print df
#        A  B  C
# one    1  2  3
# two    2  3  4
# three  2  4  3
# four   1  3  7
df.sort_values(by=['A','B'],ascending=[0,1],inplace=True)
print df
#        A  B  C
# two    2  3  4
# three  2  4  3
# one    1  2  3
# four   1  3  7
登入後複製

【相關推薦】

#1. 詳解Python中的sort()使用方法

2. 詳解Python中使用values()的實例教學

3. 分享python中sort的使用方法實例

以上是pandas的DataFrame中sort_values isin的使用實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!