
Return a new SparkDataFrame containing rows in this SparkDataFrame
but not in another SparkDataFrame. This is equivalent to EXCEPT
in SQL.
except(x, y)# S4 method for SparkDataFrame,SparkDataFrame
except(x, y)
a SparkDataFrame.
a SparkDataFrame.
A SparkDataFrame containing the result of the except operation.
Other SparkDataFrame functions: SparkDataFrame-class
,
agg
, arrange
,
as.data.frame
, attach
,
cache
, coalesce
,
collect
, colnames
,
coltypes
,
createOrReplaceTempView
,
crossJoin
, dapplyCollect
,
dapply
, describe
,
dim
, distinct
,
dropDuplicates
, dropna
,
drop
, dtypes
,
explain
, filter
,
first
, gapplyCollect
,
gapply
, getNumPartitions
,
group_by
, head
,
histogram
, insertInto
,
intersect
, isLocal
,
join
, limit
,
merge
, mutate
,
ncol
, nrow
,
persist
, printSchema
,
randomSplit
, rbind
,
registerTempTable
, rename
,
repartition
, sample
,
saveAsTable
, schema
,
selectExpr
, select
,
showDF
, show
,
storageLevel
, str
,
subset
, take
,
union
, unpersist
,
withColumn
, with
,
write.df
, write.jdbc
,
write.json
, write.orc
,
write.parquet
, write.text
# NOT RUN {
sparkR.session()
df1 <- read.json(path)
df2 <- read.json(path2)
exceptDF <- except(df, df2)
# }
Run the code above in your browser using DataLab