Answers for "pyspark adding a new column"

2

spark add column to dataframe

from pyspark.sql.functions import lit

df = sqlContext.createDataFrame(
    [(1, "a", 23.0), (3, "B", -23.0)], ("x1", "x2", "x3"))

df_with_x4 = df.withColumn("x4", lit(0))
df_with_x4.show()
Posted by: Guest on June-09-2020
0

in spark to adding new column

+-----+------+
|EmpId|Salary|
+-----+------+
|111  |50000 |
|222  |60000 |
|333  |40000 
+-----+------+
Posted by: Guest on August-03-2021

Code answers related to "pyspark adding a new column"

Python Answers by Framework

Browse Popular Code Answers by Language