📜  Python|熊猫 TimedeltaIndex.astype()

📅  最后修改于: 2022-05-13 01:55:49.091000             🧑  作者: Mango

Python|熊猫 TimedeltaIndex.astype()

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas TimedeltaIndex.astype()函数创建一个将值转换为 dtypes 的索引。新索引的类别由 dtype 确定。当无法进行转换时,会引发 ValueError 异常。

示例 #1:使用TimedeltaIndex.astype()函数将 TimedeltaIndex 对象的值转换为“str”。

# importing pandas as pd
import pandas as pd
  
# Create the first TimedeltaIndex object
tidx = pd.TimedeltaIndex(start = '1 days 02:00:12.001124',
                       periods = 5, freq = 'N', name = 'Koala')
  
# Print the TimedeltaIndex object
print(tidx)

输出 :

现在我们将使用TimedeltaIndex.astype()函数将值转换为字符串。

# cast the data values to string format.
tidx.astype('str')

输出 :

正如我们在输出中看到的, TimedeltaIndex.astype()函数已将 tidx 对象的值转换为所需的格式。示例 #2:使用TimedeltaIndex.astype()函数将 TimedeltaIndex 对象的值转换为“bool”。

# importing pandas as pd
import pandas as pd
  
# Create the TimedeltaIndex object
tidx = pd.TimedeltaIndex(data = ['06:05:01.000030', '+23:59:59.999999',
                                              '22 day 2 min 3us 10ns'])
  
# Print the TimedeltaIndex object
print(tidx)

输出 :

现在我们将使用TimedeltaIndex.astype()函数将值转换为 bool 类型。

# cast the data values to bool type.
tidx.astype('bool')

输出 :

正如我们在输出中看到的, TimedeltaIndex.astype()函数已将 tidx 对象的值转换为所需的格式。