alldup: Show all duplicate entries in a data frame/table/vector

View source: R/alldup.r

alldupR Documentation

Show all duplicate entries in a data frame/table/vector

Description

Not just the "duplicated" ones.

Usage

alldup(DF, by)

Arguments

DF

A data frame

by

The column of DF you want to look at duplicates of

Examples

DF <- data.frame(x = 1:3, y = c(1, 1, 2))
alldup(DF, "x")
alldup(DF, "y")
alldup(DF$y)

pbreheny/breheny documentation built on Feb. 18, 2025, 5:07 a.m.