Looking at the documentation: https://spark.apache.org/docs/latest/api/python/pyspark.sql.html?highlight=join
The "how=" parameter has these options...:
inner, cross, outer, full, fullouter, full_outer, left, leftouter, left_outer, right, rightouter, right_outer, semi, leftsemi, left_semi, anti, leftanti and left_anti.
I know you can flip df1 and df2 and still do a left_anti to achieve a right_anti but is the function parameter just flat out missing a right_anti or am I missing/not understanding a concept?
