pyspark.sql.functions.struct

pyspark.sql.functions.struct(*cols)[source]

Creates a new struct column.

New in version 1.4.0.

Parameters
colslist, set, str or Column

column names or Columns to contain in the output struct.

Examples

>>> df.select(struct('age', 'name').alias("struct")).collect()
[Row(struct=Row(age=2, name='Alice')), Row(struct=Row(age=5, name='Bob'))]
>>> df.select(struct([df.age, df.name]).alias("struct")).collect()
[Row(struct=Row(age=2, name='Alice')), Row(struct=Row(age=5, name='Bob'))]