用法:
Timedelta.asm8
返回一个 numpy timedelta64 数组标量视图。
提供对与 numpy.timedelta64().view() 关联的数组标量视图(即值和单位的组合)的访问,包括以纳秒为单位的 timedelta 的 64 位整数表示(Python int 兼容)。
- numpy timedelta64 数组标量视图
timedelta 的数组标量视图(以纳秒为单位)。
返回:
例子:
>>> td = pd.Timedelta('1 days 2 min 3 us 42 ns') >>> td.asm8 numpy.timedelta64(86520000003042,'ns')
>>> td = pd.Timedelta('2 min 3 s') >>> td.asm8 numpy.timedelta64(123000000000,'ns')
>>> td = pd.Timedelta('3 ms 5 us') >>> td.asm8 numpy.timedelta64(3005000,'ns')
>>> td = pd.Timedelta(42, unit='ns') >>> td.asm8 numpy.timedelta64(42,'ns')
相关用法
- Python pandas.Timedelta.isoformat用法及代码示例
- Python pandas.Timedelta.delta用法及代码示例
- Python pandas.Timedelta.resolution_string用法及代码示例
- Python pandas.Timedelta.nanoseconds用法及代码示例
- Python pandas.TimedeltaIndex.round用法及代码示例
- Python pandas.Timedelta用法及代码示例
- Python pandas.TimedeltaIndex.to_frame用法及代码示例
- Python pandas.TimedeltaIndex.ceil用法及代码示例
- Python pandas.TimedeltaIndex.to_series用法及代码示例
- Python pandas.TimedeltaIndex.floor用法及代码示例
- Python pandas.Timestamp.dayofweek用法及代码示例
- Python pandas.Timestamp.dayofyear用法及代码示例
- Python pandas.Timestamp.strftime用法及代码示例
- Python pandas.Timestamp.month_name用法及代码示例
- Python pandas.Timestamp.ceil用法及代码示例
- Python pandas.Timestamp.to_numpy用法及代码示例
- Python pandas.Timestamp.days_in_month用法及代码示例
- Python pandas.Timestamp.asm8用法及代码示例
- Python pandas.Timestamp.is_quarter_end用法及代码示例
- Python pandas.Timestamp.timestamp用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Timedelta.asm8。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。