Following is the action I'm trying to achieve:
types = ["200","300"]
def Count(ID):
cnd = F.when((**F.col("type") in types**), 1).otherwise(F.lit(0))
return F.sum(cnd).alias("CountTypes")
The syntax in bold is not correct, any suggestions how to get the right syntax here for PySpark?
I'm not sure about what you are trying to achieve but here is the correct syntax :