说明:
返回一个包含此 SparkDataFrame 中不同行的新 SparkDataFrame。
用法:
distinct(x)
## S4 method for signature 'SparkDataFrame'
distinct(x)
## S4 method for signature 'SparkDataFrame'
unique(x)
参数:
x
一个 SparkDataFrame
注意:
自 1.4.0 起不同
自 1.5.0 以来独一无二
例子:
sparkR.session()
path <- "path/to/file.json"
df <- read.json(path)
distinctDF <- distinct(df)
相关用法
- R SparkR dim用法及代码示例
- R SparkR describe用法及代码示例
- R SparkR dropFields用法及代码示例
- R SparkR dropDuplicates用法及代码示例
- R SparkR dapplyCollect用法及代码示例
- R SparkR drop用法及代码示例
- R SparkR dropTempView用法及代码示例
- R SparkR dapply用法及代码示例
- R SparkR dropTempTable用法及代码示例
- R SparkR dtypes用法及代码示例
- R matrix转list用法及代码示例
- R SparkR freqItems用法及代码示例
- R SparkR intersectAll用法及代码示例
- R SparkR spark.decisionTree用法及代码示例
- R SparkR sparkR.callJMethod用法及代码示例
- R SparkR sample用法及代码示例
- R SparkR approxQuantile用法及代码示例
- R SparkR glm用法及代码示例
- R SparkR randomSplit用法及代码示例
- R SparkR withColumn用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 Distinct。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。