用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。