用法:
classmethod Timestamp.fromordinal(ordinal, freq=None, tz=None)
傳遞一個序數,翻譯並轉換為一個 ts。注意:根據定義,序數本身不能有任何 tz 信息。
- ordinal:int
對應於預測公曆序數的日期。
- freq:str,日期偏移
應用於時間戳的偏移量。
- tz:str、pytz.timezone、dateutil.tz.tzfile 或無
時間戳的時區。
參數:
例子:
>>> pd.Timestamp.fromordinal(737425) Timestamp('2020-01-01 00:00:00')
相關用法
- Python pandas.Timestamp.fromtimestamp用法及代碼示例
- Python pandas.Timestamp.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用法及代碼示例
- Python pandas.Timestamp.daysinmonth用法及代碼示例
- Python pandas.Timestamp.replace用法及代碼示例
- Python pandas.Timestamp.round用法及代碼示例
- Python pandas.Timestamp.tz_convert用法及代碼示例
- Python pandas.Timestamp.is_quarter_start用法及代碼示例
- Python pandas.Timestamp.tz用法及代碼示例
- Python pandas.Timestamp.weekofyear用法及代碼示例
- Python pandas.Timestamp.normalize用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Timestamp.fromordinal。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。