gpt4 book ai didi

scala - 如何从DataFrame中获取Array[Seq[String]]?

转载 作者:行者123 更新时间:2023-12-02 04:09:50 25 4
gpt4 key购买 nike

如何将DataFrame cc传递到Array[Seq[String]]

val factors = $(ccCols).split(",")
val cc = dataset.select(factors.head, factors.tail: _*)

我尝试了这种方式,但它给了我Array[Row]:

cc.rdd.collect()

最佳答案

您将需要使用 Row 对象的 toSeq 函数:

val a = sc.parallelize(Seq((1,2),(3,4))).toDF("a", "b")
a.show
/*
Output:
+-+-+
|a|b|
+-+-+
|1|2|
|3|4|
+-+-+
*/

a.collect.map(_.toSeq)
// Output: Array(WrappedArray(1, 2), WrappedArray(3, 4))

关于scala - 如何从DataFrame中获取Array[Seq[String]]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37328384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com