用法:
Timedelta.resolution_string
返回表示最低 timedelta 分辨率的字符串。
每个 timedelta 都有一个定义的分辨率,表示最低或最精细的精度级别。每个级别的分辨率都由一个短字符串表示,定义如下:
解析:返回值
天数:‘D’
小时:'H'
分钟:'T'
秒:'S'
毫秒:'L'
微秒:‘U’
纳秒:‘N’
- str
时间增量分辨率。
返回:
例子:
>>> td = pd.Timedelta('1 days 2 min 3 us 42 ns') >>> td.resolution_string 'N'
>>> td = pd.Timedelta('1 days 2 min 3 us') >>> td.resolution_string 'U'
>>> td = pd.Timedelta('2 min 3 s') >>> td.resolution_string 'S'
>>> td = pd.Timedelta(36, unit='us') >>> td.resolution_string 'U'
相关用法
- Python pandas.Timedelta.isoformat用法及代码示例
- Python pandas.Timedelta.delta用法及代码示例
- Python pandas.Timedelta.asm8用法及代码示例
- 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.resolution_string。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。