Hi
i need to run some ID's though a ban list and return a list where they are deleted
ID:
structure(list(ID = c(595119208, 595174634, 210018628, 355597680
)), class = "data.frame", row.names = c(NA, -4L))
i got this ban list
structure(list(customer = c("Royal Netherlands Navy", "Royal Shipping And Trading Company Limited",
"Royalmar Denizcilik Ve Gemi Isletmeciligi Ltd Sirk", "Royalty Marine Limited",
"Royalty Petroleum Trading FZC", "Roymar Ship Management Incorporated"
), ID = c("BHC01815", "556003356", "355597680", "BHC07175", "557938947",
"BHC01816")), row.names = c(NA, -6L), class = c("tbl_df", "tbl",
"data.frame"))
and i want a list of the traders where the customers from the ban list is removed. how to make that function?