Series.dt
can be used to access series values as datetimelike and return multiple properties. Series.dt.minute
Pandas Series.dt.minute
returns an empty array containing the minutes of the date and time in base data of this series object.
Syntax: Series.dt.minute
Parameter: None
Returns: numpy array
Example # 1: Use the Series.dt.minute attribute
to return the minutes of the date and time in the underlying data of this Series object.
|
Output:
We will now use the Series.dt.minute
attribute to return the date and time minutes in the underlying data of this Series object.
|
Output:
As we can see from the output, the attribute Series.dt.minute
successfully accessed and returned the datetime minutes in the underlying data of the given series object.
Example # 2: Use the Series attribute .dt.minute
to return the date and time minutes in the underlying data of this Series object.
|
Output:
Now we will use the Series.dt.minute
attribute to return the minutes of the date and time in the underlying data of this Series object.
|
Output:
As we can see from the output, the Series.dt.minute
attribute successfully accessed and returned the datetime minutes in the underlying data this series object.