I have a simple data frame that looks like this:
x <- c("aa", "aa", "aa", "bb", "cc", "cc", "cc")
y <- c(101, 102, 113, 201, 202, 344, 407)
df = data.frame(x, y)
x y
1 aa 101
2 aa 102
3 aa 113
4 bb 201
5 cc 202
6 cc 344
7 cc 407
I would like to use a dplyr::filter() and a RegEx to filter out all the y
observations that start with the number 1
I'm imagining that the code will look something like this:
df %>%
filter(y != grep("^1"))
But I am getting an Error in grep("^1") : argument "x" is missing, with no default
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…