Python Pandas DatetimeIndex.nanosecond

Python Pandas DatetimeIndex.nanosecond

Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。

Pandas DatetimeIndex.nanosecond属性输出一个Index对象,其中包含DatetimeIndex对象的每个条目中存在的纳秒值。

语法: DatetimeIndex.nanosecond

返回:包含纳秒的索引。

例子#1:使用DatetimeIndex.nanosecond属性来查找DatetimeIndex对象中存在的纳秒值。

# importing pandas as pd
import pandas as pd
  
# Create the DatetimeIndex
# Here 'N' represents nanoseconds
didx = pd.DatetimeIndex(start ='2014-08-01 10:05:45', freq ='N',
                              periods = 5, tz ='Asia/Calcutta')
  
# Print the DatetimeIndex
print(didx)
Python

输出 :
Python Pandas DatetimeIndex.nanosecond

现在我们要找到DatetimeIndex对象中的所有纳秒值。

# find all the nanosecond values present in the object
didx.nanosecond
Python

输出 :
Python Pandas DatetimeIndex.nanosecond
正如我们在输出中看到的那样,该函数返回了一个Index对象,其中包含DatetimeIndex对象的每个条目中存在的纳秒值。

示例#2:使用DatetimeIndex.nanosecond属性来查找DatetimeIndex对象中存在的纳秒值。

# importing pandas as pd
import pandas as pd
  
# Create the DatetimeIndex
didx = pd.DatetimeIndex(['2014-08-01 10:05:45.000000010 + 05:30',
                         '2014-08-01 10:05:45.000000021 + 05:35'])
  
# Print the DatetimeIndex
print(didx)
Python

输出 :
Python Pandas DatetimeIndex.nanosecond

现在我们要找到DatetimeIndex对象中的所有纳秒值。

# find all the nanosecond values present in the object
didx.nanosecond
Python

输出 :
Python Pandas DatetimeIndex.nanosecond
正如我们在输出中看到的那样,该函数返回了一个Index对象,其中包含DatetimeIndex对象的每个条目中存在的纳秒值。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Pandas 日期时间

登录

注册