Equality test that is safe for null values.
Usagex %<=>% value
# S4 method for class 'Column'
x %<=>% value
Arguments
a Column
a value to compare
Can be used, unlike standard equality operator, to perform null-safe joins. Equivalent to Scala Column.<=>
and Column.eqNullSafe
.
if (FALSE) { # \dontrun{
df1 <- createDataFrame(data.frame(
x = c(1, NA, 3, NA), y = c(2, 6, 3, NA)
))
head(select(df1, df1$x == df1$y, df1$x %<=>% df1$y))
df2 <- createDataFrame(data.frame(y = c(3, NA)))
count(join(df1, df2, df1$y == df2$y))
count(join(df1, df2, df1$y %<=>% df2$y))
} # }
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4