I realize this question has been asked before but it's not clicking. There's really no placeholder?
Example:
my_mtcars <- mtcars %>% mutate(bla = c(1:nrow(.)))
my_mtcars$bla[10] <- NA
my_mtcars$bla[15] <- NA
Works:
# magritr pipe to return NA rows while debugging a df
my_mtcars %>% filter(!complete.cases(.)) %>% glimpse
Does not work:
# native piple equivilent
my_mtcars |> filter(!complete.cases(.)) |> glimpse()
What's the 'right' way to do what I'm trying to do with the native pipe?