Python| Pandas PeriodIndex.dayofyear
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas PeriodIndex.dayofyear属性返回一个 Index 对象。 Index 包含给定 PeriodIndex 对象中每个元素的一年中的第几天。
Syntax : PeriodIndex.dayofyear
Parameters : None
Return : Index
示例 #1:使用 PeriodIndex.dayofyear 属性为给定 PeriodIndex 对象中的每个元素查找一年中的序数天的值。
Python3
# importing pandas as pd
import pandas as pd
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start ='2005-12-21',
end ='2005-12-29', freq ='D')
# Print the PeriodIndex object
print(pidx)
Python3
# return the value of ordinal
# days of the year
pidx.dayofyear
Python3
# importing pandas as pd
import pandas as pd
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start ='2011-03-14 ',
end ='2011-03-21', freq ='D')
# Print the PeriodIndex object
print(pidx)
Python3
# return the value of ordinal
# days of the year
pidx.dayofyear
输出 :
现在我们将使用 PeriodIndex.dayofyear 属性来查找给定对象中每个元素的一年中的序数天的值。
Python3
# return the value of ordinal
# days of the year
pidx.dayofyear
输出 :
正如我们在输出中看到的那样,PeriodIndex.dayofyear 属性返回了一个 Index 对象,其中包含给定 PeriodIndex 对象中每个元素的一年中的第几天的值。
示例 #2:使用 PeriodIndex.dayofyear 属性查找给定 PeriodIndex 对象中每个元素的一年中的序数天的值。
Python3
# importing pandas as pd
import pandas as pd
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start ='2011-03-14 ',
end ='2011-03-21', freq ='D')
# Print the PeriodIndex object
print(pidx)
输出 :
现在我们将使用 PeriodIndex.dayofyear 属性来查找给定对象中每个元素的一年中的序数天的值。
Python3
# return the value of ordinal
# days of the year
pidx.dayofyear
输出 :
正如我们在输出中看到的那样,PeriodIndex.dayofyear 属性返回了一个 Index 对象,其中包含给定 PeriodIndex 对象中每个元素的一年中的第几天的值。