用法:
Series.dt.dayofweek
星期幾,星期一=0,星期日=6。
返回星期幾。假設一周從星期一開始,用 0 表示,在星期日結束,用 6 表示。此方法在具有日期時間值(使用
dt
訪問器)或 DatetimeIndex 的兩個係列上都可用。- 係列或索引
包含表示天數的整數。
返回:
例子:
>>> s = pd.date_range('2016-12-31', '2017-01-08', freq='D').to_series() >>> s.dt.dayofweek 2016-12-31 5 2017-01-01 6 2017-01-02 0 2017-01-03 1 2017-01-04 2 2017-01-05 3 2017-01-06 4 2017-01-07 5 2017-01-08 6 Freq:D, dtype:int64
相關用法
- Python pandas.Series.dt.day_name用法及代碼示例
- Python pandas.Series.dt.day用法及代碼示例
- Python pandas.Series.dt.day_of_week用法及代碼示例
- Python pandas.Series.dt.is_year_end用法及代碼示例
- Python pandas.Series.dt.weekday用法及代碼示例
- Python pandas.Series.dt.to_pydatetime用法及代碼示例
- Python pandas.Series.dt.second用法及代碼示例
- Python pandas.Series.dt.tz_localize用法及代碼示例
- Python pandas.Series.dt.is_leap_year用法及代碼示例
- Python pandas.Series.dt.is_quarter_start用法及代碼示例
- Python pandas.Series.dt.tz_convert用法及代碼示例
- Python pandas.Series.dt.round用法及代碼示例
- Python pandas.Series.dt.nanosecond用法及代碼示例
- Python pandas.Series.dt.to_period用法及代碼示例
- Python pandas.Series.dt.ceil用法及代碼示例
- Python pandas.Series.dt.hour用法及代碼示例
- Python pandas.Series.dt.is_month_end用法及代碼示例
- Python pandas.Series.dt.is_month_start用法及代碼示例
- Python pandas.Series.dt.year用法及代碼示例
- Python pandas.Series.dt.normalize用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.dt.dayofweek。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。