Every line of 'pyspark union multiple dataframes' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
137 def test_rightOuterJoin(): 138 rdd1 = pysparkling.Context().parallelize([(0, 1), (1, 1)]) 139 rdd2 = pysparkling.Context().parallelize([(2, 1), (1, 3)]) 140 j = rdd1.rightOuterJoin(rdd2) 141 assert dict(j.collect())[1][1] == 3