本文介绍了设置列名称ddply的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在
library(plyr)
ddply(data,.(col1,col2),nrow)
喜欢
ddply(data,.(col1,col2),function(x) data.frame(number=nrow(x)))
推荐答案
也许您正在寻找summarize
(或mutate
或transform
,具体取决于您要执行的操作).
Perhaps you are looking for summarize
(or mutate
or transform
, depending on what you want to do).
一个小例子:
set.seed(1)
data <- data.frame(col1 = c(1, 2, 2, 3, 3, 4),
col2 = c(1, 2, 2, 1, 2, 1),
z = rnorm(6))
ddply(data,.(col1,col2), summarize,
number = length(z), newcol = mean(z))
# col1 col2 number newcol
# 1 1 1 1 -0.6264538
# 2 2 2 2 -0.3259926
# 3 3 1 1 1.5952808
# 4 3 2 1 0.3295078
# 5 4 1 1 -0.8204684
这篇关于设置列名称ddply的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!