当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R SparkR not用法及代码示例


说明:

布尔表达式的反转。

布尔表达式的反转。

用法:

not(x)

## S4 method for signature 'Column'
!x

## S4 method for signature 'Column'
not(x)

参数:

  • x 要计算的列

细节:

not! 不能直接应用于数值列。要实现 R-like 真实性列必须强制转换为 BooleanType

注意:

!自 2.3.0 起

不是从 2.3.0 开始

例子:

df <- createDataFrame(data.frame(x = c(-1, 0, 1)))

head(select(df, !column("x") > 0))

 
df <- createDataFrame(data.frame(
  is_true = c(TRUE, FALSE, NA),
  flag = c(1, 0,  1)
))

head(select(df, not(df$is_true)))

# Explicit cast is required when working with numeric column
head(select(df, not(cast(df$flag, "boolean"))))

相关用法


注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 !。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。