NumPy 的 datetime_data(~)
方法提取有关单元以及 step-size 的信息。
警告
由于官方文档中缺乏解释,我们不明白step-size的含义。
参数
1.dtype
| string
或 type
从中提取信息的日期时间。
返回值
包含以下内容的元组:
-
以字符串形式给出的单位
-
steps-size 以整数形式给出
例子
要从现有 datetime64
对象中提取单位:
dt = np.datetime64(np."2020-05-25")
np.datetime_data(dt)
('D', 1)
在这里,输出告诉我们日期时间以天为单位(即 "D"
)。同样,我们不太确定第一单元的内容,所以如果您有任何见解,我们很乐意与您讨论!
要从现有 timedelta64
对象中提取单位:
td = np.timedelta(20, "s")
np.datetime_data(td)
('s', 1)
相关用法
- Python NumPy datetime_as_string方法用法及代码示例
- Python datetime timetuple()用法及代码示例
- Python datetime astimezone()用法及代码示例
- Python datetime.time.fromisoformat用法及代码示例
- Python datetime timetz()用法及代码示例
- Python datetime.utcoffset()用法及代码示例
- Python datetime Timezone构造函数用法及代码示例
- Python datetime.datetime.fromisoformat用法及代码示例
- Python datetime isocalendar()用法及代码示例
- Python datetime转date用法及代码示例
- Python datetime.tzinfo()用法及代码示例
- Python datetime date()用法及代码示例
- Python datetime.date.isoformat用法及代码示例
- Python datetime.timetz()用法及代码示例
- Python datetime.date.replace用法及代码示例
- Python datetime isoformat()用法及代码示例
- Python datetime.date.ctime用法及代码示例
- Python datetime.time.isoformat用法及代码示例
- Python datetime.datetime.isoformat用法及代码示例
- Python datetime.timedelta用法及代码示例
- Python datetime __str__()用法及代码示例
- Python datetime.date.fromisoformat用法及代码示例
- Python datetime isoweekday()用法及代码示例
- Python datetime.tzinfo.fromutc用法及代码示例
- Python datetime.timedelta()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | datetime_data method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。