How To Check If The Value At Hand Is In A Particular Column Of Some Pyspark Dataframe?
I have a PySpark dataframe, trips, on which I am performing aggregations. For each PULocationID, I am first computing the average of total_amount, then the number of trips, and fin
Solution 1:
Here is the line of code that solved the problem:
cnt_cond(col('DOLocationID').isin([i['DOLocationID'] for i in mtrips.collect()])).alias('trips_to_pop')
Post a Comment for "How To Check If The Value At Hand Is In A Particular Column Of Some Pyspark Dataframe?"