本文简要介绍 python 语言中 numpy.datetime_data
的用法。
用法:
numpy.datetime_data(dtype, /)
获取有关日期或时间类型的步长的信息。
返回的元组可以作为
numpy.datetime64
和numpy.timedelta64
的第二个参数传递。- dtype: 类型
dtype 对象,必须是
datetime64
或timedelta64
类型。
- unit: str
此 dtype 所基于的日期时间单位。
- count: int
一个步骤中的基本单位数。
参数:
返回:
例子:
>>> dt_25s = np.dtype('timedelta64[25s]') >>> np.datetime_data(dt_25s) ('s', 25) >>> np.array(10, dt_25s).astype('timedelta64[s]') array(250, dtype='timedelta64[s]')
结果可用于构造使用与 timedelta 相同单位的日期时间
>>> np.datetime64('2010', np.datetime_data(dt_25s)) numpy.datetime64('2010-01-01T00:00:00','25s')
相关用法
- Python numpy datetime_as_string用法及代码示例
- Python numpy dtype.isbuiltin用法及代码示例
- Python numpy dtype.shape用法及代码示例
- Python numpy dtype.ndim用法及代码示例
- Python numpy dtype.alignment用法及代码示例
- Python numpy diagonal用法及代码示例
- Python numpy dtype用法及代码示例
- Python numpy dtype.names用法及代码示例
- Python numpy dtype.__class_getitem__用法及代码示例
- Python numpy divmod用法及代码示例
- Python numpy dtype.flags用法及代码示例
- Python numpy diagflat用法及代码示例
- Python numpy dtype.fields用法及代码示例
- Python numpy dtype.subdtype用法及代码示例
- Python numpy delete用法及代码示例
- Python numpy dtype.descr用法及代码示例
- Python numpy dec.setastest用法及代码示例
- Python numpy divide用法及代码示例
- Python numpy dtype.kind用法及代码示例
- Python numpy dtype.metadata用法及代码示例
- Python numpy diag用法及代码示例
- Python numpy dsplit用法及代码示例
- Python numpy dec.slow用法及代码示例
- Python numpy dtype.newbyteorder用法及代码示例
- Python numpy digitize用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.datetime_data。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。