用法:
class pandas.PeriodIndex(data=None, ordinal=None, freq=None, dtype=None, copy=False, name=None, **fields)
不可變的 ndarray 持有指示定期時間段的序數值。
索引鍵被裝箱到攜帶元數據(例如,頻率信息)的周期對象。
- data:array-like(1d int np.ndarray 或 PeriodArray),可選
用於構建索引的可選period-like 數據。
- copy:bool
製作輸入 ndarray 的副本。
- freq:str 或句點對象,可選
pandas 期間字符串或相應對象之一。
- year:int、array 或 Series,默認無
- month:int、array 或 Series,默認無
- quarter:int、array 或 Series,默認無
- day:int、array 或 Series,默認無
- hour:int、array 或 Series,默認無
- minute:int、array 或 Series,默認無
- second:int、array 或 Series,默認無
- dtype:str 或 PeriodDtype,默認無
參數:
例子:
>>> idx = pd.PeriodIndex(year=[2000, 2002], quarter=[1, 3]) >>> idx PeriodIndex(['2000Q1', '2002Q3'], dtype='period[Q-DEC]')
相關用法
- Python pandas.PeriodIndex.asfreq用法及代碼示例
- Python pandas.PeriodIndex.strftime用法及代碼示例
- Python pandas.Period.strftime用法及代碼示例
- Python pandas.Period.dayofyear用法及代碼示例
- Python pandas.Period.qyear用法及代碼示例
- Python pandas.Period.day用法及代碼示例
- Python pandas.Period.minute用法及代碼示例
- Python pandas.Period.dayofweek用法及代碼示例
- Python pandas.Period.day_of_week用法及代碼示例
- Python pandas.Period.week用法及代碼示例
- Python pandas.Period.day_of_year用法及代碼示例
- Python pandas.Period.days_in_month用法及代碼示例
- Python pandas.Period.daysinmonth用法及代碼示例
- Python pandas.Period.hour用法及代碼示例
- Python pandas.Period.weekday用法及代碼示例
- Python pandas.PeriodDtype用法及代碼示例
- Python pandas.Period.second用法及代碼示例
- Python pandas.Period.weekofyear用法及代碼示例
- Python pandas.Period.start_time用法及代碼示例
- Python pandas.arrays.IntervalArray.is_empty用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.PeriodIndex。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。