I want to remove rows that contain empty strings in all columns except the first column. I can do this if I know how many columns there are, as I can do this using the following (assuming three columns in tibble):
table %>% filter(.[[2]] != "" & .[[3]] != "")
However, I need code for when I don't know the number of columns...
Ideal solutions will use tidyverse as much as possible :)
Help!