join {SparkR} | R Documentation |
Join two SparkDataFrames based on the given join expression.
## S4 method for signature 'SparkDataFrame,SparkDataFrame' join(x, y, joinExpr = NULL, joinType = NULL)
x |
A SparkDataFrame |
y |
A SparkDataFrame |
joinExpr |
(Optional) The expression used to perform the join. joinExpr must be a Column expression. If joinExpr is omitted, join() will perform a Cartesian join |
joinType |
The type of join to perform. The following join types are available: 'inner', 'outer', 'full', 'fullouter', leftouter', 'left_outer', 'left', 'right_outer', 'rightouter', 'right', and 'leftsemi'. The default joinType is "inner". |
A SparkDataFrame containing the result of the join operation.
Other SparkDataFrame functions: $
,
$<-
, select
,
select
,
select,SparkDataFrame,Column-method
,
select,SparkDataFrame,list-method
,
selectExpr
;
SparkDataFrame-class
,
dataFrame
; [
,
[[
, subset
;
agg
, agg
,
count,GroupedData-method
,
summarize
, summarize
;
arrange
, arrange
,
arrange
, orderBy
,
orderBy
, orderBy
,
orderBy
; as.data.frame
,
as.data.frame,SparkDataFrame-method
;
attach
,
attach,SparkDataFrame-method
;
cache
; collect
;
colnames
, colnames
,
colnames<-
, colnames<-
,
columns
, names
,
names<-
; coltypes
,
coltypes
, coltypes<-
,
coltypes<-
; columns
,
dtypes
, printSchema
,
schema
, schema
;
count
, nrow
;
dapply
, dapply
,
dapplyCollect
, dapplyCollect
;
describe
, describe
,
describe
, summary
,
summary
,
summary,AFTSurvivalRegressionModel-method
,
summary,GeneralizedLinearRegressionModel-method
,
summary,KMeansModel-method
,
summary,NaiveBayesModel-method
;
dim
; distinct
,
unique
; dropDuplicates
,
dropDuplicates
; dropna
,
dropna
, fillna
,
fillna
, na.omit
,
na.omit
; drop
,
drop
; dtypes
;
except
, except
;
explain
, explain
;
filter
, filter
,
where
, where
;
first
, first
;
groupBy
, groupBy
,
group_by
, group_by
;
head
; histogram
;
insertInto
, insertInto
;
intersect
, intersect
;
isLocal
, isLocal
;
limit
, limit
;
merge
, merge
;
mutate
, mutate
,
transform
, transform
;
ncol
; persist
;
printSchema
; rbind
,
rbind
, unionAll
,
unionAll
; registerTempTable
,
registerTempTable
; rename
,
rename
, withColumnRenamed
,
withColumnRenamed
;
repartition
; sample
,
sample
, sample_frac
,
sample_frac
;
saveAsParquetFile
,
saveAsParquetFile
,
write.parquet
, write.parquet
;
saveAsTable
, saveAsTable
;
saveDF
, saveDF
,
write.df
, write.df
,
write.df
; selectExpr
;
showDF
, showDF
;
show
, show
,
show,GroupedData-method
,
show,WindowSpec-method
; str
;
take
; unpersist
;
withColumn
, withColumn
;
write.jdbc
, write.jdbc
;
write.json
, write.json
;
write.text
, write.text
## Not run: sc <- sparkR.init() sqlContext <- sparkRSQL.init(sc) df1 <- read.json(sqlContext, path) df2 <- read.json(sqlContext, path2) join(df1, df2) # Performs a Cartesian join(df1, df2, df1$col1 == df2$col2) # Performs an inner join based on expression join(df1, df2, df1$col1 == df2$col2, "right_outer") ## End(Not run)