gpt4 book ai didi

scala - RDD 到 LabeledPoint 的转换

转载 作者:行者123 更新时间:2023-12-04 16:52:01 25 4
gpt4 key购买 nike

如果我有一个大约有 500 列和 2 亿行的 RDD,并且 RDD.columns.indexOf("target", 0)显示 Int = 77这告诉我我的目标因变量在第 77 列。但我对如何选择所需的(部分)列作为特征没有足够的知识(比如我想要从 23 到 59、111 到 357、399 到 489 的列) .我想知道我是否可以申请这样的:

val data = rdd.map(col => new LabeledPoint(
col(77).toDouble, Vectors.dense(??.map(x => x.toDouble).toArray))

任何建议或指导将不胜感激。

也许我把 RDD 和 DataFrame 搞混了,我可以用 .toDF() 把 RDD 转换成 DataFrame或者使用 DataFrame 比 RDD 更容易实现目标。

最佳答案

我假设您的数据或多或少是这样的:

import scala.util.Random.{setSeed, nextDouble}
setSeed(1)

case class Record(
foo: Double, target: Double, x1: Double, x2: Double, x3: Double)

val rows = sc.parallelize(
(1 to 10).map(_ => Record(
nextDouble, nextDouble, nextDouble, nextDouble, nextDouble
))
)
val df = sqlContext.createDataFrame(rows)
df.registerTempTable("df")

sqlContext.sql("""
SELECT ROUND(foo, 2) foo,
ROUND(target, 2) target,
ROUND(x1, 2) x1,
ROUND(x2, 2) x2,
ROUND(x2, 2) x3
FROM df""").show

所以我们有如下数据:
+----+------+----+----+----+
| foo|target| x1| x2| x3|
+----+------+----+----+----+
|0.73| 0.41|0.21|0.33|0.33|
|0.01| 0.96|0.94|0.95|0.95|
| 0.4| 0.35|0.29|0.51|0.51|
|0.77| 0.66|0.16|0.38|0.38|
|0.69| 0.81|0.01|0.52|0.52|
|0.14| 0.48|0.54|0.58|0.58|
|0.62| 0.18|0.01|0.16|0.16|
|0.54| 0.97|0.25|0.39|0.39|
|0.43| 0.23|0.89|0.04|0.04|
|0.66| 0.12|0.65|0.98|0.98|
+----+------+----+----+----+

我们想忽略 foox2并提取 LabeledPoint(target, Array(x1, x3)) :

// Map feature names to indices
val featInd = List("x1", "x3").map(df.columns.indexOf(_))

// Or if you want to exclude columns
val ignored = List("foo", "target", "x2")
val featInd = df.columns.diff(ignored).map(df.columns.indexOf(_))

// Get index of target
val targetInd = df.columns.indexOf("target")

df.rdd.map(r => LabeledPoint(
r.getDouble(targetInd), // Get target value
// Map feature indices to values
Vectors.dense(featInd.map(r.getDouble(_)).toArray)
))

关于scala - RDD 到 LabeledPoint 的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31638770/

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