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


R语言 unique()用法及代码示例


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

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Remove Duplicate Elements from an Object in R Programming – unique() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。