| except {SparkR} | R Documentation | 
Return a new DataFrame containing rows in this DataFrame but not in another DataFrame. This is equivalent to 'EXCEPT' in SQL.
## S4 method for signature 'DataFrame,DataFrame' except(x, y) except(x, y)
| x | A Spark DataFrame | 
| y | A Spark DataFrame | 
A DataFrame containing the result of the except operation.
## Not run: 
##D sc <- sparkR.init()
##D sqlContext <- sparkRSQL.init(sc)
##D df1 <- jsonFile(sqlContext, path)
##D df2 <- jsonFile(sqlContext, path2)
##D exceptDF <- except(df, df2)
## End(Not run)