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
256 views
in Technique[技术] by (71.8m points)

r - summarizing a field based on the value of another field in dplyr

I have a data frame DF with four fields: id, date, feature, value. I would like to generate a data frame DF2 with three fields: id, feature, value, where value is the value for the corresponding id and feature for the latest available date. In plyr parlance:

DF2 <- ddply(DF, .(id, feature), function(x) c(value(x$value[x$date == max(x$date)]))

I am a bit at a loss on how to achieve this with dplyr using group_by and summarize.

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

This is just a direct translation of your plyr call in dplyr:

library(dplyr)
DF2 = summarise(group_by(DF, id, feature), value=value[which(date == max(date))])

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

...