I have a data with 100 patients and each patient has values from 7 days (1 to 7). How can I select only patients according another variable only in day 1?
df <- data.frame(id = c(1, 1, 1, 2, 2, 2),
day = c(1, 2, 3, 1, 2, 3),
RRT = c(0, 1, 0, 1, 0, 0))
id day RRT
1 1 0
1 2 1
1 3 0
2 1 1
2 2 0
2 3 0
I want select only id whom had RRT at day = 0.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…