本文简要介绍
pyspark.sql.functions.exists
的用法。用法:
pyspark.sql.functions.exists(col, f)
返回谓词是否适用于数组中的一个或多个元素。
版本 3.1.0 中的新函数。
- col:
Column
或 str 列或表达式的名称
- f:函数
(x: Column) -> Column: ...
返回布尔表达式。可以使用Column
的方法,pyspark.sql.functions
和Scala中定义的函数UserDefinedFunctions
。不支持 PythonUserDefinedFunctions
(SPARK-27052)。- :return: a :class:`~pyspark.sql.Column`:
- col:
参数:
例子:
>>> df = spark.createDataFrame([(1, [1, 2, 3, 4]), (2, [3, -1, 0])],("key", "values")) >>> df.select(exists("values", lambda x: x < 0).alias("any_negative")).show() +------------+ |any_negative| +------------+ | false| | true| +------------+
相关用法
- Python pyspark explode用法及代码示例
- Python pyspark expr用法及代码示例
- Python pyspark explode_outer用法及代码示例
- Python pyspark element_at用法及代码示例
- Python pyspark create_map用法及代码示例
- Python pyspark date_add用法及代码示例
- Python pyspark DataFrame.to_latex用法及代码示例
- Python pyspark DataStreamReader.schema用法及代码示例
- Python pyspark MultiIndex.size用法及代码示例
- Python pyspark arrays_overlap用法及代码示例
- Python pyspark Series.asof用法及代码示例
- Python pyspark DataFrame.align用法及代码示例
- Python pyspark Index.is_monotonic_decreasing用法及代码示例
- Python pyspark IsotonicRegression用法及代码示例
- Python pyspark DataFrame.plot.bar用法及代码示例
- Python pyspark DataFrame.to_delta用法及代码示例
- Python pyspark MultiIndex.hasnans用法及代码示例
- Python pyspark Series.to_frame用法及代码示例
- Python pyspark DataFrame.quantile用法及代码示例
- Python pyspark Column.withField用法及代码示例
- Python pyspark Index.values用法及代码示例
- Python pyspark Index.drop_duplicates用法及代码示例
- Python pyspark aggregate用法及代码示例
- Python pyspark IndexedRowMatrix.computeGramianMatrix用法及代码示例
- Python pyspark DecisionTreeClassifier用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.sql.functions.exists。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。