[Solved] select a row based on different column value (same row) [duplicate]


We can use filter from dplyr

 library(dplyr)
 df %>%
     filter(ID == "WTN" & Time == "A")

4

solved select a row based on different column value (same row) [duplicate]