其他分享
首页 > 其他分享> > R语言中aggregate函数对数据进行整合运算

R语言中aggregate函数对数据进行整合运算

作者:互联网

 

1、

gender <- rep(c("male", "female"), 2)
age <- c(20, 30, 26, 32)
height <- c(170, 180, 175, 178)
dat <- data.frame(gender, age, height)
dat
aggregate(dat[,2:3], by=list(gender), FUN=mean)     ## 依据gender列整合,求2、3列整合后的平均值

 

标签:语言,gender,函数,整合,aggregate,运算
来源: https://www.cnblogs.com/liujiaxin2018/p/16295706.html