如何更改数据框内部结构的架构?

时间:2018-07-18 22:16:13

标签: python apache-spark hadoop pyspark bigdata

我有这样的代码

df.select(col("producingformation")).printSchema()

输出:

 |-- producingformation: struct (nullable = true)
 |    |-- _1: string (nullable = true)
 |    |-- _2: string (nullable = true)
 |    |-- _3: long (nullable = true)

现在我要将结构_1的列重命名为a, 这将是一个很大的帮助。

df.select(col("producingformation").cast(struct_schema))

抛出错误

0 个答案:

没有答案