You can use distinct() function along with %>% to remove duplicate rows:
iris %>% distinct(Sepal.Length, Sepal.Width, .keep_all = T)->iris_1
With the above command, we are filtering out those rows which would have the same values for "Sepal.Length" and "Sepal.Width".