Closed etiennebacher closed 2 years ago
Close #104. New behavior:
suppressPackageStartupMessages(library(poorman)) df <- data.frame( a = c(1, 1, 2, 2), b = c(3, 4, 5, 6) ) df %>% dplyr::distinct(a, .keep_all = TRUE) #> a b #> 1 1 3 #> 2 2 5 df %>% poorman::distinct(a, .keep_all = TRUE) #> a b #> 1 1 3 #> 2 2 5
Created on 2022-08-02 by the reprex package (v2.0.1)
Close #104. New behavior:
Created on 2022-08-02 by the reprex package (v2.0.1)