关闭。这个问题需要更加突出重点。它目前不接受答案。**想改进这个问题吗?**通过编辑这篇文章更新这个问题,使它只关注一个问题。
两年前关门了。改进这个问题我在sparkDataframe中有一列,它是整数。如何使用sparkjava为列中的每个值添加一个新列
eufgjt7s1#
可以使用df.withcolumn将新列添加到Dataframe。
import static org.apache.spark.sql.functions.col; DataFrame df2 = df1.withColumn("new_column", col("column_name").plus(1));
1条答案
按热度按时间eufgjt7s1#
可以使用df.withcolumn将新列添加到Dataframe。