Python| Pandas Period.dayofweek
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas Period.dayofweek
属性返回给定 Period 对象的星期几。它返回一个整数值。
Syntax : Period.dayofweek
Parameters : None
Return : day of the week
示例 #1:使用Period.dayofweek
属性在给定的 Period 对象中查找星期几。
# importing pandas as pd
import pandas as pd
# Create the Period object
prd = pd.Period(freq ='D', year = 2001, month = 1, day = 21)
# Print the Period object
print(prd)
输出 :
现在我们将使用Period.dayofweek
属性在给定对象中查找星期几。
# return the day value
prd.dayofweek
输出 :
正如我们在输出中看到的, Period.dayofweek
属性返回了 6,表示接下来的日期是一周的第 6 天。
示例 #2:使用Period.dayofweek
属性在给定的 Period 对象中查找星期几。
# importing pandas as pd
import pandas as pd
# Create the Period object
prd = pd.Period(freq ='Q', year = 2006, quarter = 1)
# Print the object
print(prd)
输出 :
现在我们将使用Period.dayofweek
属性在给定对象中查找星期几。
# return the day value
prd.dayofweek
输出 :
正如我们在输出中看到的, Period.dayofweek
属性返回了 4,表示接下来的日期是一周的第 4 天。