Thursday, October 16, 2025
HomeLanguagesPython | Pandas PeriodIndex.asfreq

Python | Pandas PeriodIndex.asfreq

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.asfreq() function convert each element of the given PeriodIndex object to the specified frequency.

Syntax : PeriodIndex.asfreq(freq=None, how=’E’)

Parameters :
freq : a frequency
how : ā€˜E’, ā€˜END’, or ā€˜FINISH’ for end, ā€˜S’, ā€˜START’, or ā€˜BEGIN’ for start.

Return : PeriodIndex with the new frequency

Example #1: Use PeriodIndex.asfreq() function to convert the frequency of the given PeriodIndex object to the specified time series frequency.




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


Output :

Now we will use the PeriodIndex.asfreq() function to convert the time series frequency of the given PeriodIndex object to the specified frequency.




# convert the frequency
# 'M' stands for monthly frequency
pidx.asfreq('M')


Output :

As we can see in the output, the PeriodIndex.asfreq() function has converted the frequency of the given PeriodIndex object to the specified frequency.
Ā 
Example #2: Use PeriodIndex.asfreq() function to convert the frequency of the given PeriodIndex object to the specified time series frequency.




# importing pandas as pd
import pandas as pd
Ā Ā 
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start ='2016-10-12 11:12:02',Ā 
Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā end ='2020-04-12 11:32:12', freq ='Q')
Ā Ā 
# Print the PeriodIndex object
print(pidx)


Output :

Now we will use the PeriodIndex.asfreq() function to convert the time series frequency of the given PeriodIndex object to the specified frequency.




# convert the frequency
# 'Y' stands for yearly frequency
pidx.asfreq('Y')


Output :

As we can see in the output, the PeriodIndex.asfreq() function has converted the frequency of the given PeriodIndex object to the specified frequency.

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