SyntaxError:使用 ArrayType 创建 DataFrame 时语法无效

Posted

技术标签:

【中文标题】SyntaxError:使用 ArrayType 创建 DataFrame 时语法无效【英文标题】:SyntaxError: invalid syntax when creating DataFrame with ArrayType 【发布时间】:2018-09-06 08:51:07 【问题描述】:

我想创建 PySpark DataFrame

from pyspark.sql import SparkSession
from pyspark.sql.types import *
from pyspark.sql import Row

spark = SparkSession \
    .builder \
    .appName("Test") \
    .master("local[4]") \
    .getOrCreate()

schema = StructType([StructField('id', StringType()), \
                     StructField('timestamp',LongType()), \
                     StructField('coordinates',ArrayType())])
rows = [Row(id="11", timestamp=1523975430000, coordinates = [41.5555, 2.1522])]

df = spark.createDataFrame(rows, schema)

但是,lat 旁边出现语法错误 SyntaxError: invalid syntax。我假设应该以不同的方式创建 ArrayType 对象。 有人可以帮我创建这个 DataFrame df吗?

更新:

预期结果:

id    timestamp       coordinates
11    1523975430000    [41.5555, 2.1522]

【问题讨论】:

您不能在列表内进行分配。 @timgeb:但是应该有一些方法可以将我的数据保存在 DataFrame 中,不是吗? 在不知道您的数据框应该是什么样子的情况下无法回答。 @timgeb:查看我的更新,我在其中显示预期的 DataFrame。 【参考方案1】:

ArrayType 需要元素的类型。试试:

schema = StructType([StructField('id', StringType()), \
                     StructField('timestamp',LongType()), \
                     StructField('coordinates',ArrayType(DoubleType()))])
rows = [Row(id="11", timestamp=1523975430000, coordinates = [ 41.5555,  2.1522])]

结果:

+---+-------------+-----------------+
| id|    timestamp|      coordinates|
+---+-------------+-----------------+
| 11|1523975430000|[41.5555, 2.1522]|
+---+-------------+-----------------+

【讨论】:

以上是关于SyntaxError:使用 ArrayType 创建 DataFrame 时语法无效的主要内容,如果未能解决你的问题,请参考以下文章

将 Spark 中的多个 ArrayType 列合并为一个 ArrayType 列

聚合 ArrayType 行由使用高阶函数的浮点数组成

使用 pyspark 将 StructType、ArrayType 转换/转换为 StringType(单值)

使用 ArrayType 作为 bufferSchema 的 Spark UDAF 性能问题

在 PySpark 中将 ArrayType(StringType()) 的列转换为 ArrayType(DateType())

如何使用 Spark SQL 获得 MapTypes 的 ArrayType 的最大值?