Friday, October 24, 2025
HomeLanguagesPython | Pandas PeriodIndex.weekofyear

Python | Pandas PeriodIndex.weekofyear

Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier.

Pandas PeriodIndex.weekofyear attribute return an Index object containing the ordinal value of week of each period element for the given PeriodIndex object.

Syntax : PeriodIndex.weekofyear

Parameters : None

Return : Index object

Example #1: Use PeriodIndex.weekofyear attribute to find out the ordinal value of week of each period element contained in the given PeriodIndex object.




# importing pandas as pd
import pandas as pd
  
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start ='2004-11-11 02:45:21 ',
               end ='2004-11-21 8:45:29', freq ='D')
  
# Print the PeriodIndex object
print(pidx)


Output :

Now we will use the PeriodIndex.weekofyear attribute to find out the week’s ordinal value in the year for the given PeriodIndex object.




# return the week's ordinal value in the year
pidx.weekofyear


Output :

As we can see in the output, the PeriodIndex.weekofyear attribute has returned an Index object containing the ordinal value of the week for each period element contained in the given PeriodIndex object.
 
Example #2: Use PeriodIndex.weekofyear attribute to find out the ordinal value of week of each period element contained in the given PeriodIndex object.




# importing pandas as pd
import pandas as pd
  
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start ='2016-2-12 11:12:02',
            end ='2016-09-12 11:32:12', freq ='M')
  
# Print the PeriodIndex object
print(pidx)


Output :

Now we will use the PeriodIndex.weekofyear attribute to find out the week’s ordinal value in the year for the given PeriodIndex object.




# return the week's ordinal value
pidx.weekofyear


Output :

As we can see in the output, the PeriodIndex.weekofyear attribute has returned an Index object containing the ordinal value of the week for each period element contained in the given PeriodIndex object.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS