I am struggling to create a new column based off a simple condition comparing two dates. I have tried the following:
JavaScript
x
2
1
.withColumn("terms", when(col("start_date") <= col("end_date")), col("sarter_terms")).otherwise(col("exp_terms"))
2
Which yields a syntax error.
I have also updated as follows:
JavaScript
1
2
1
.withColumn("terms", when(col("start_date").leq(col("end_date"))), col("sarter_terms")).otherwise(col("exp_terms"))
2
But this yields a Python error that the Column is not callable.
How would I create a new column that dynamically adjusts based on whether the date comparator holds.
Advertisement
Answer
Your first statement had parenthesis mismatch , resulting in Column not callable error
JavaScript
1
3
1
.withColumn("terms", when(col("start_date") <= col("end_date")), col("sarter_terms")).otherwise(col("exp_terms"))
2
3
Change it to
JavaScript
1
6
1
.withColumn("terms", when(
2
col("start_date") <= col("end_date")
3
, col("sarter_terms")
4
).otherwise(col("exp_terms"))
5
)
6
Always Fan out the parenthesis to correctly measure the closing ones are in the appropriate places