Python是進行數據分析的一種出色語言,主要是因為以數據為中心的Python軟件包具有奇妙的生態係統。 Pandas是其中的一種,使導入和分析數據更加容易。
Pandas Series.gt()用於比較兩個係列,並為每個元素返回布爾值。
用法:Series.gt(other, level=None, fill_value=None, axis=0)
參數:
other:其他要比較的係列
level:int或多層名稱(如果是多層)
fill_value:要代替NaN的值
axis:0或“索引”按行應用方法,1或“列”按列應用。
返回類型:布爾係列
注意:根據比較調用者係列>其他係列返回結果。
要下載以下示例中使用的數據集,請單擊此處。
在以下示例中,使用的 DataFrame 包含一些NBA球員的數據。下麵是任何操作之前的數據幀圖像。
範例1:
在此示例中,使用.gt()方法比較“年齡”列和“權重”列。由於“體重”列中的值與“年齡”列相比非常大,因此該值首先被除以10。比較之前,請使用.dropna()方法刪除空行,以免發生錯誤。
# importing pandas module
import pandas as pd
# importing regex module
import re
# making data frame
data = pd.read_csv("https://media.geeksforgeeks.org/wp-content/uploads/nba.csv")
# removing null values to avoid errors
data.dropna(inplace = True)
# other series
other = data["Weight"]/10
# calling method and returning to new column
data["Age > Weight"]= data["Age"].gt(other)
輸出:
如輸出圖像中所示,隻要“年齡”列中的值大於“權重/10”,則新列的值為“真”。
範例2:處理NaN值
在此示例中,使用pd.Series()
。該係列也包含空值,因此將5傳遞給fill_value參數以將空值替換為5。
# importing pandas module
import pandas as pd
# importing numpy module
import numpy as np
# creating series 1
series1 = pd.Series([24, 19, 2, 33, 49, 7, np.nan, 10, np.nan])
# creating series 2
series2 = pd.Series([16, np.nan, 2, 23, 5, 40, np.nan, 0, 9])
# setting null replacement value
na_replace = 5
# calling and storing result
result = series1.gt(series2, fill_value = na_replace)
# display
result
輸出:
從輸出中可以看出,將NaN值替換為5,並在替換後執行比較,並將新值用於比較。
0 True 1 True 2 False 3 True 4 True 5 False 6 False 7 True 8 False dtype:bool
相關用法
- Python pandas.map()用法及代碼示例
- Python Pandas Series.str.len()用法及代碼示例
- Python Pandas.factorize()用法及代碼示例
- Python Pandas TimedeltaIndex.name用法及代碼示例
- Python Pandas dataframe.ne()用法及代碼示例
- Python Pandas Series.between()用法及代碼示例
- Python Pandas DataFrame.where()用法及代碼示例
- Python Pandas Series.add()用法及代碼示例
- Python Pandas.pivot_table()用法及代碼示例
- Python Pandas Series.mod()用法及代碼示例
- Python Pandas Dataframe.at[ ]用法及代碼示例
- Python Pandas Dataframe.iat[ ]用法及代碼示例
- Python Pandas.pivot()用法及代碼示例
- Python Pandas dataframe.mul()用法及代碼示例
- Python Pandas.melt()用法及代碼示例
注:本文由純淨天空篩選整理自Kartikaybhutani大神的英文原創作品 Python | Pandas Series.gt()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。