I'm looking to be able to delete a row from a data frame already uploaded to r. I tried using the "select(Dataframe, -c(...)" function part of the dplyr package but this only deletes columns and not rows.
library(dplyr)
WallyceEdited <- select(X0626Wallyce,-c(Intensity,Signal, Ambient))
head(WallyceEdited)
The code used above is great for deleting columns, but I am wondering if there is a similar function I can use in dplyr or tidyverse to delete rows, not just columns.