R 语言中的 unique() 函数用于从向量、 DataFrame 或数组中删除重复的元素/行。
用法: unique(x)
参数:
x:向量、 DataFrame 、数组或 NULL
范例1:
# R program to illustrate
# unique function
# Initializing some set of numbers
x <- c(1:10, 5:9)
x
# Calling unique() function to print
# unique set of numbers
unique(x)
输出:
[1] 1 2 3 4 5 6 7 8 9 10 5 6 7 8 9 [1] 1 2 3 4 5 6 7 8 9 10
范例2:
# R program to illustrate
# unique function
# Initializing a matrix
x <- matrix(rep(1:9, length.out = 18),
nrow = 6, ncol = 3, byrow = T)
x
# Calling unique() function to print
# unique set of numbers in the matrix
unique(x)
输出:
[, 1] [, 2] [, 3] [1, ] 1 2 3 [2, ] 4 5 6 [3, ] 7 8 9 [4, ] 1 2 3 [5, ] 4 5 6 [6, ] 7 8 9 [, 1] [, 2] [, 3] [1, ] 1 2 3 [2, ] 4 5 6 [3, ] 7 8 9
相关用法
- R语言 make.unique()用法及代码示例
- R语言 unname()用法及代码示例
- R语言 na.omit()用法及代码示例
- R语言 char.expand()用法及代码示例
- R语言 order()用法及代码示例
- R语言 names()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 identity()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 which()用法及代码示例
- R语言 call()用法及代码示例
- R语言 cumprod()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 ncol()用法及代码示例
- R语言 is.factor()用法及代码示例
- R语言 nrow()用法及代码示例
- R语言 max()用法及代码示例
- R语言 min()用法及代码示例
- R语言 str()用法及代码示例
- R语言 cumsum()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Remove Duplicate Elements from an Object in R Programming – unique() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。