Python| Pandas Period.weekofyear
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas Period.weekofyear属性返回一个整数值,它是给定 Period 对象一年中的周数。
Syntax : Period.weekofyear
Parameters : None
Return : week of the year
示例 #1:使用 Period.weekofyear 属性查找给定 Period 对象的周数。
Python3
# importing pandas as pd
import pandas as pd
# Create the Period object
prd = pd.Period(freq ='S', year = 2000, month = 2,
day = 21, hour = 8, minute = 21)
# Print the Period object
print(prd)
Python3
# return week number for the year
prd.weekofyear
Python3
# importing pandas as pd
import pandas as pd
# Create the Period object
prd = pd.Period(freq ='T', year = 2006, month = 10,
hour = 15, minute = 49)
# Print the Period object
print(prd)
Python3
# return week number for the year
prd.weekofyear
输出 :
现在我们将使用 Period.weekofyear 属性来查找一年中的周数
Python3
# return week number for the year
prd.weekofyear
输出 :
正如我们在输出中看到的,Period.weekofyear 属性返回了 8,表示 prd 对象中的周期位于一年中的第 8 周。
示例 #2:使用 Period.weekofyear 属性查找给定 Period 对象的周数。
Python3
# importing pandas as pd
import pandas as pd
# Create the Period object
prd = pd.Period(freq ='T', year = 2006, month = 10,
hour = 15, minute = 49)
# Print the Period object
print(prd)
输出 :
现在我们将使用 Period.weekofyear 属性来查找一年中的周数
Python3
# return week number for the year
prd.weekofyear
输出 :
正如我们在输出中看到的,Period.weekofyear 属性返回了 39,表明 prd 对象中的期间位于一年中的第 39 周。