用法:
final Index.asof(label)
从索引中返回标签,或者,如果不存在,则返回前一个。
假设索引已排序,如果在索引中则返回传递的索引标签,如果传递的索引标签不在索引中,则返回上一个索引标签。
- label:对象
方法返回最新索引标签的标签。
- 对象
传递的标签(如果它在索引中)。如果传递的标签不在排序索引中,则为前一个标签;如果没有这样的标签,则为
NaN
。
参数:
返回:
例子:
Index.asof
返回最新的索引标签,直到传递的标签。>>> idx = pd.Index(['2013-12-31', '2014-01-02', '2014-01-03']) >>> idx.asof('2014-01-01') '2013-12-31'
如果标签在索引中,则该方法返回传递的标签。
>>> idx.asof('2014-01-02') '2014-01-02'
如果索引中的所有标签都晚于传递的标签,则返回 NaN。
>>> idx.asof('1999-01-02') nan
如果索引未排序,则会引发错误。
>>> idx_not_sorted = pd.Index(['2013-12-31', '2015-01-02', ... '2014-01-03']) >>> idx_not_sorted.asof('2013-12-31') Traceback (most recent call last): ValueError:index must be monotonic increasing or decreasing
相关用法
- Python pandas.Index.argmin用法及代码示例
- Python pandas.Index.argmax用法及代码示例
- Python pandas.Index.any用法及代码示例
- Python pandas.Index.all用法及代码示例
- Python pandas.Index.array用法及代码示例
- Python pandas.Index.argsort用法及代码示例
- Python pandas.Index.value_counts用法及代码示例
- Python pandas.Index.is_categorical用法及代码示例
- Python pandas.Index.to_series用法及代码示例
- Python pandas.Index.str用法及代码示例
- Python pandas.Index.to_numpy用法及代码示例
- Python pandas.Index.is_object用法及代码示例
- Python pandas.Index.slice_indexer用法及代码示例
- Python pandas.Index.is_interval用法及代码示例
- Python pandas.Index.notnull用法及代码示例
- Python pandas.Index.equals用法及代码示例
- Python pandas.Index.set_names用法及代码示例
- Python pandas.Index.searchsorted用法及代码示例
- Python pandas.Index.duplicated用法及代码示例
- Python pandas.Index.is_monotonic_increasing用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Index.asof。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。