ฉันพยายามโอนความเข้าใจของ plyr ไปเป็น dplyr แต่ฉันไม่สามารถหาวิธีจัดกลุ่มตามคอลัมน์หลายคอลัมน์ได้
# make data with weird column names that can't be hard coded
data = data.frame(
asihckhdoydkhxiydfgfTgdsx = sample(LETTERS[1:3], 100, replace=TRUE),
a30mvxigxkghc5cdsvxvyv0ja = sample(LETTERS[1:3], 100, replace=TRUE),
value = rnorm(100)
)
# get the columns we want to average within
columns = names(data)[-3]
# plyr - works
ddply(data, columns, summarize, value=mean(value))
# dplyr - raises error
data %.%
group_by(columns) %.%
summarise(Value = mean(value))
#> Error in eval(expr, envir, enclos) : index out of bounds
ฉันขาดอะไรในการแปลตัวอย่าง plyr ให้เป็นไวยากรณ์ dplyr-esque
แก้ไข 2017 : อัปเดต Dplyr แล้วดังนั้นจึงมีวิธีแก้ปัญหาที่ง่ายกว่า ดูคำตอบที่เลือกในปัจจุบัน
.dots
คุณจำเป็นต้องใช้ นี่คือคำตอบที่ดัดแปลงมาจากคำตอบของ @hadley ด้านล่าง:df %>% group_by_(.dots=list(quote(asihckhdoydk), quote(a30mvxigxkgh))) %>% summarise(n = n())
group_by_
อธิบายได้ในตอนนี้vignette("nse")