Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
449 views
in Technique[技术] by (71.8m points)

selecting individuals in long format in r

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can do this many ways, for example by using the filter function within dplyr. Assuming you want all ids if RRT does not equal 0 and day equals 1:

library(dplyr)

df %>% 
filter(day == 1 & RRT != 0)

id day RRT
2   1   1

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...