
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Python Pandas - Return the string alias of the Time series frequency applied on the given Period object
To return the string alias of the Time series frequency applied on the given Period object, use the period.freqstr property.
At first, import the required libraries −
import pandas as pd
The pandas.Period represents a period of time. Creating two Period objects −
period1 = pd.Period("2020-09-23 03:55:20") period2 = pd.Period(freq="Y", year = 2021, month = 2, day = 14, hour = 2, minute = 35)
Display the Period objects −
print("Period1...\n", period1) print("Period2...\n", period2)
Get the string alias of the frequency −
res1 = period1.freqstr res2 = period2.freqstr
Example
Following is the code −
import pandas as pd # The pandas.Period represents a period of time # creating two Period objects period1 = pd.Period("2020-09-23 03:55:20") period2 = pd.Period(freq="Y", year = 2021, month = 2, day = 14, hour = 2, minute = 35) # display the Period objects print("Period1...\n", period1) print("Period2...\n", period2) # get the string alias of the frequency res1 = period1.freqstr res2 = period2.freqstr # Return the string alias of the frequency from two Period objects print("\nString alias of the frequency from the 1st Period object ...\n", res1) print("\nString alias of the frequency from the 2nd Period object ...\n", res2)
Output
This will produce the following code −
Period1... 2020-09-23 03:55:20 Period2... 2021 String alias of the frequency from the 1st Period object ... <Second> String alias of the frequency from the 2nd Period object ... <YearEnd: month=12>
- Related Articles
- Python Pandas - Return frequency applied on the given DateOffset object as a string
- Python Pandas - Return the frequency applied on the given DateOffset object
- Python Pandas - Return frequency applied on the given BusinessDay Offset object as a string
- Python Pandas - Return frequency applied on the given BusinessHour Offset object as a string
- Python Pandas - Return frequency applied on the given CustomBusinessDay Offset object as a string
- Python Pandas - Return frequency applied on the given CustomBusinessHour Offset object as a string
- Python Pandas - Return the name of the frequency applied on the given BusinessDay offset object
- Python Pandas - Return the name of the frequency applied on the given BusinessHour offset object
- Python Pandas - Return the name of the frequency applied on the given CustomBusinessDay offset object
- Python Pandas - Return the name of the frequency applied on the given CustomBusinessHour offset object
- Python Pandas - Return the name of the frequency that is applied on the offset object
- Python Pandas - Return the count of increments applied on the given DateOffset object
- Python Pandas - Return the rule code applied on the given DateOffset object
- Python Pandas - Return the rule code applied on the given BusinessDay object
- Python Pandas - Return the rule code applied on the given BusinessHour object

Advertisements