Skip to content

Instantly share code, notes, and snippets.

@kshirsagarsiddharth
Created June 23, 2021 16:39
Show Gist options
  • Select an option

  • Save kshirsagarsiddharth/124f42c95074df634c639f5fe21ac035 to your computer and use it in GitHub Desktop.

Select an option

Save kshirsagarsiddharth/124f42c95074df634c639f5fe21ac035 to your computer and use it in GitHub Desktop.
location_filtered = users.filter(F.col("location").rlike(r"india|usa|china"))
filtered_with_location = location_filtered.join(combined_and_filtered, on = 'user_id', how = 'inner')\
.select('user_id','isbn','book_rating','book_title')\
.withColumn('user_id',F.col('user_id').cast('int'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment