作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
arrays_zip
的等价函数怎么写在 Spark 2.3 中?
来自 Spark 2.4 的源代码
def arrays_zip(*cols):
"""
Collection function: Returns a merged array of structs in which the N-th struct contains all
N-th values of input arrays.
:param cols: columns of arrays to be merged.
>>> from pyspark.sql.functions import arrays_zip
>>> df = spark.createDataFrame([(([1, 2, 3], [2, 3, 4]))], ['vals1', 'vals2'])
>>> df.select(arrays_zip(df.vals1, df.vals2).alias('zipped')).collect()
[Row(zipped=[Row(vals1=1, vals2=2), Row(vals1=2, vals2=3), Row(vals1=3, vals2=4)])]
"""
sc = SparkContext._active_spark_context
return Column(sc._jvm.functions.arrays_zip(_to_seq(sc, cols, _to_java_column)))
最佳答案
您可以通过创建用户定义函数来实现这一点
import pyspark.sql.functions as f
import pyspark.sql.types as t
arrays_zip_ = f.udf(lambda x, y: list(zip(x, y)),
t.ArrayType(t.StructType([
# Choose Datatype according to requirement
t.StructField("first", t.IntegerType()),
t.StructField("second", t.StringType())
])))
df = spark.createDataFrame([(([1, 2, 3], ['2', '3', '4']))], ['first', 'second'])
df.select(arrays_zip_('first', 'second').alias('zipped')).show(2,False)
+------------------------+
|zipped |
+------------------------+
|[[1, 2], [2, 3], [3, 4]]|
+------------------------+
df.select(f.arrays_zip('first', 'second').alias('zipped')).show(2,False)
+------------------------+
|zipped |
+------------------------+
|[[1, 2], [2, 3], [3, 4]]|
+------------------------+
关于python - pyspark:Spark 2.3 中的 arrays_zip 等效项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61503929/
arrays_zip的等价函数怎么写在 Spark 2.3 中? 来自 Spark 2.4 的源代码 def arrays_zip(*cols): """ Collection fun
我是一名优秀的程序员,十分优秀!