本文简要介绍
pyspark.pandas.Index.is_monotonic
的用法。用法:
property Index.is_monotonic
如果对象中的值单调递增,则返回布尔值。
注意
is_monotonic 的当前实现需要多次洗牌和聚合来检查本地和全局的顺序,这可能会很昂贵。在多索引的情况下,所有数据都传输到单个节点,目前很容易导致内存不足错误。
注意
如果您使用 pandas-on-Spark < 1.7.0 和 PySpark 3.1.1,请禁用 Spark 配置
spark.sql.optimizer.nestedSchemaPruning.enabled
进行多索引。- is_monotonic:bool
返回:
例子:
>>> ser = ps.Series(['1/1/2018', '3/1/2018', '4/1/2018']) >>> ser.is_monotonic True
>>> df = ps.DataFrame({'dates': [None, '1/1/2018', '2/1/2018', '3/1/2018']}) >>> df.dates.is_monotonic False
>>> df.index.is_monotonic True
>>> ser = ps.Series([1]) >>> ser.is_monotonic True
>>> ser = ps.Series([]) >>> ser.is_monotonic True
>>> ser.rename("a").to_frame().set_index("a").index.is_monotonic True
>>> ser = ps.Series([5, 4, 3, 2, 1], index=[1, 2, 3, 4, 5]) >>> ser.is_monotonic False
>>> ser.index.is_monotonic True
支持MultiIndex
>>> midx = ps.MultiIndex.from_tuples( ... [('x', 'a'), ('x', 'b'), ('y', 'c'), ('y', 'd'), ('z', 'e')]) >>> midx MultiIndex([('x', 'a'), ('x', 'b'), ('y', 'c'), ('y', 'd'), ('z', 'e')], ) >>> midx.is_monotonic True
>>> midx = ps.MultiIndex.from_tuples( ... [('z', 'a'), ('z', 'b'), ('y', 'c'), ('y', 'd'), ('x', 'e')]) >>> midx MultiIndex([('z', 'a'), ('z', 'b'), ('y', 'c'), ('y', 'd'), ('x', 'e')], ) >>> midx.is_monotonic False
相关用法
- Python pyspark Index.is_monotonic_decreasing用法及代码示例
- Python pyspark Index.is_monotonic_increasing用法及代码示例
- Python pyspark Index.is_categorical用法及代码示例
- Python pyspark Index.is_interval用法及代码示例
- Python pyspark Index.is_boolean用法及代码示例
- Python pyspark Index.is_unique用法及代码示例
- Python pyspark Index.is_numeric用法及代码示例
- Python pyspark Index.is_object用法及代码示例
- Python pyspark Index.is_all_dates用法及代码示例
- Python pyspark Index.is_floating用法及代码示例
- Python pyspark Index.is_integer用法及代码示例
- Python pyspark Index.isin用法及代码示例
- Python pyspark Index.isna用法及代码示例
- Python pyspark Index.item用法及代码示例
- Python pyspark Index.insert用法及代码示例
- Python pyspark Index.identical用法及代码示例
- Python pyspark Index.intersection用法及代码示例
- Python pyspark Index.inferred_type用法及代码示例
- 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.argmin用法及代码示例
- Python pyspark Index.argmax用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Index.is_monotonic。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。