📜  Python|熊猫系列.rank()

📅  最后修改于: 2022-05-13 01:55:08.671000             🧑  作者: Mango

Python|熊猫系列.rank()

Pandas 系列是带有轴标签的一维 ndarray。标签不必是唯一的,但必须是可散列的类型。该对象支持基于整数和基于标签的索引,并提供了许多用于执行涉及索引的操作的方法。

Pandas Series.rank()函数沿轴计算数值数据等级(1 到 n)。相等的值被分配一个等级,该等级是这些值的等级的平均值。

示例 #1:使用Series.rank()函数对给定 Series 对象的基础数据进行排名。

# importing pandas as pd
import pandas as pd
  
# Creating the Series
sr = pd.Series([10, 25, 3, 11, 24, 6])
  
# Create the Index
index_ = ['Coca Cola', 'Sprite', 'Coke', 'Fanta', 'Dew', 'ThumbsUp']
  
# set the index
sr.index = index_
  
# Print the series
print(sr)

输出 :

现在我们将使用Series.rank()函数返回给定 Series 对象的基础数据的排名。

# assign rank
result = sr.rank()
  
# Print the result
print(result)

输出 :

正如我们在输出中看到的, Series.rank()函数已经为给定 Series 对象的每个元素分配了排名。

示例 #2:使用Series.rank()函数对给定 Series 对象的基础数据进行排名。给定的数据还包含一些相等的值。

# importing pandas as pd
import pandas as pd
  
# Creating the Series
sr = pd.Series([10, 25, 3, 11, 24, 6, 25])
  
# Create the Index
index_ = ['Coca Cola', 'Sprite', 'Coke', 'Fanta', 'Dew', 'ThumbsUp', 'Appy']
  
# set the index
sr.index = index_
  
# Print the series
print(sr)

输出 :

现在我们将使用Series.rank()函数返回给定 Series 对象的基础数据的排名。

# assign rank
result = sr.rank()
  
# Print the result
print(result)

输出 :

正如我们在输出中看到的, Series.rank()函数已经为给定 Series 对象的每个元素分配了排名。请注意,已为相等的值分配了一个等级,该等级是它们等级的平均值。