gpt4 book ai didi

java - 加入数据框 spark java

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:48:31 24 4
gpt4 key购买 nike

First of all, thank you for the time in reading my question.

My question is the following: In Spark with Java, i load in two dataframe the data of two csv files.

These dataframes will have the following information.

Dataframe Airport

Id | Name    | City
-----------------------
1 | Barajas | Madrid

Dataframe airport_city_state

City | state
----------------
Madrid | España

I want to join these two dataframes so that it looks like this:

dataframe result

Id | Name    | City   | state
--------------------------
1 | Barajas | Madrid | España

Where dfairport.city = dfaiport_city_state.city

But I can not clarify with the syntax so I can do the join correctly. A little code of how I have created the variables:

 // Load the csv, you have to specify that you have header and what delimiter you have
Dataset <Row> dfairport = Load.Csv (sqlContext, data_airport);
Dataset <Row> dfairport_city_state = Load.Csv (sqlContext, data_airport_city_state);


// Change the name of the columns in the csv dataframe to match the columns in the database
// Once they match the name we can insert them
Dfairport
.withColumnRenamed ("leg_key", "id")
.withColumnRenamed ("leg_name", "name")
.withColumnRenamed ("leg_city", "city")

dfairport_city_state
.withColumnRenamed("city", "ciudad")
.withColumnRenamed("state", "estado");

最佳答案

首先,非常感谢您的回复。

我已经尝试了我的两种解决方案,但都没有用,我收到以下错误:ETL_Airport 类型未定义方法 dfairport_city_state (String)

我无法访问要连接的数据框的特定列。

编辑:已经完成加入,我把解决方案放在这里以防其他人提供帮助;)

感谢所有的一切和最诚挚的问候

//Join de tablas en las que comparten ciudad
Dataset <Row> joined = dfairport.join(dfairport_city_state, dfairport.col("leg_city").equalTo(dfairport_city_state.col("city")));

关于java - 加入数据框 spark java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43033835/

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