java 类似dataframe_java-如何从另一个 DataFrame 中选择列,其中这些列是不同 DataFrame 中列的值列表...

这篇博客展示了如何使用Scala和Spark进行数据转换,包括将DataFrame的列转换为字符串类型,并通过`withColumn`方法进行列选择。同时,还演示了创建包含列名列表的DataFrame。
摘要由CSDN通过智能技术生成

val df_data = Seq(

("G1","I1","col1_r1", "col2_r1","col3_r1"),

("G1","I2","col1_r2", "col2_r2","col3_r3")

).toDF("group","industry_id","col1","col2","col3")

.withColumn("group", $"group".cast(StringType))

.withColumn("industry_id", $"industry_id".cast(StringType))

.withColumn("col1", $"col1".cast(StringType))

.withColumn("col2", $"col2".cast(StringType))

.withColumn("col3", $"col3".cast(StringType))

+-----+-----------+-------+-------+-------+

|group|industry_id| col1| col2| col3|

+-----+-----------+-------+-------+-------+

| G1| I1|col1_r1|col2_r1|col3_r1|

| G1| I2|col1_r2|col2_r2|col3_r3|

+-----+-----------+-------+-------+-------+

val df_cols = Seq(

("1", "usa", Seq("col1","col2","col3")),

("2", "ind", Seq("col1","col2"))

).toDF("id","name","list_of_colums")

.withColumn("id", $"id".cast(IntegerType))

.withColumn("name", $"name".cast(StringType))

+---+----+------------------+

| id|name| list_of_colums|

+---+----+------------------+

| 1| usa|[col1, col2, col3]|

| 2| ind| [col1, col2]|

+---+----+------------------+

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值