Learn R Programming

assertions (version 0.1.0)

has_duplicates: Check if a vector has duplicates

Description

This function returns a logical value indicating whether the input vector contains duplicated elements.

Usage

has_duplicates(x)

Value

A logical value indicating whether the input vector contains duplicated elements.

Arguments

x

A vector.

Examples

Run this code
if(interactive()){
has_duplicates(c(1, 2, 3))  # returns FALSE
has_duplicates(c(1, 2, 2))  # returns TRUE
}

Run the code above in your browser using DataLab