本文简要介绍
pyspark.pandas.Index.asof
的用法。用法:
Index.asof(label: Any) → Union[int, float, bool, str, bytes, decimal.Decimal, datetime.date, datetime.datetime, None]
从索引中返回标签,或者,如果不存在,则返回前一个。
假设索引已排序,如果在索引中则返回传递的索引标签,如果传递的索引标签不在索引中,则返回上一个索引标签。
注意
此 API 依赖于
Index.is_monotonic_increasing()
,这可能很昂贵。- label:对象
方法返回最新索引标签的标签。
- 对象
传递的标签(如果它在索引中)。如果传递的标签不在排序索引中,则为前一个标签;如果没有这样的标签,则为
NaN
。
参数:
返回:
例子:
Index.asof
返回最新的索引标签,直到传递的标签。>>> idx = ps.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
相关用法
- Python pyspark Index.astype用法及代码示例
- Python pyspark Index.argmin用法及代码示例
- Python pyspark Index.argmax用法及代码示例
- Python pyspark Index.any用法及代码示例
- Python pyspark Index.append用法及代码示例
- Python pyspark Index.all用法及代码示例
- Python pyspark Index.is_monotonic_decreasing用法及代码示例
- Python pyspark Index.values用法及代码示例
- Python pyspark Index.drop_duplicates用法及代码示例
- Python pyspark Index.value_counts用法及代码示例
- Python pyspark Index.map用法及代码示例
- Python pyspark Index.equals用法及代码示例
- Python pyspark Index.item用法及代码示例
- Python pyspark Index.insert用法及代码示例
- Python pyspark Index.nlevels用法及代码示例
- Python pyspark Index.min用法及代码示例
- Python pyspark Index.copy用法及代码示例
- Python pyspark Index.difference用法及代码示例
- Python pyspark Index.to_list用法及代码示例
- Python pyspark Index.shape用法及代码示例
- Python pyspark Index.dropna用法及代码示例
- Python pyspark Index.repeat用法及代码示例
- Python pyspark Index.notna用法及代码示例
- Python pyspark Index.has_duplicates用法及代码示例
- Python pyspark Index.max用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Index.asof。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。