TimedeltaIndex.astype()
Pandas TimedeltaIndex.astype()
creates an index with values cast to dtypes ... The class of the new index is determined by the dtype. When conversion is not possible, a ValueError is thrown.
Syntax: TimedeltaIndex.astype (dtype, copy = True)
Parameters:
dtype: numpy dtype or pandas type
copy: bool, default True
By default, astype always returns a newly allocated object. If copy is set to False and internal requirements on dtype are satisfied, the original data is used to create a new Index or the original Index is returned.Return: Index object
Example # 1: Use TimedeltaIndex.astype ()
to cast TimedeltaIndex object values to & # 39; str & # 39;.
|
Output:
We will now use TimedeltaIndex.astype ()
to cast the value to a string.
|
Output:
As we can see in the output, TimedeltaIndex.astype ()
values the tidx object into the desired format.
Example # 2 : Use TimedeltaIndex.astype ()
to cast TimedeltaIndex object values to & # 39; bool & # 39 ;.
|
Output:
Now we will use TimedeltaIndex.astype ()
to cast the value to the bool type.
|
Output:
As we can see in the output, TimedeltaIndex.astype ()
values the tidx object into the desired format.