作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 tidyverse 中,summarize 可用于具有单值函数的分组数据。例如
mtcars %>% group_by(cyl) %>% summarise(max(cos(mpg)))
如果函数是向量值的,那么如果我没记错的话,建议使用 do。例如,do 命令适用于 phych 包中的向量值函数“describe”:
library(psych)
mtcars %>% group_by(cyl) %>% do(describe(.$mpg))
如何同时将单值函数和向量值函数应用于分组数据?例如,如何将 max(cos()) 和 describe() 应用到 mpg 列,并将输出作为一个数据帧?
最佳答案
我们可以将 describe
的输出放在 summarise
中的 list
中,然后 unnest
library(tidyverse)
mtcars %>%
group_by(cyl) %>%
summarise(Cosmpg = max(cos(mpg)), list(describe(mpg))) %>%
unnest
# A tibble: 3 x 15
# cyl Cosmpg vars n mean sd median trimmed mad min max range skew kurtosis se
# <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#1 4.00 0.743 1.00 11.0 26.7 4.51 26.0 26.4 6.52 21.4 33.9 12.5 0.259 -1.65 1.36
#2 6.00 0.939 1.00 7.00 19.7 1.45 19.7 19.7 1.93 17.8 21.4 3.60 -0.158 -1.91 0.549
#3 8.00 0.989 1.00 14.0 15.1 2.56 15.2 15.2 1.56 10.4 19.2 8.80 -0.363 -0.566 0.684
关于R:如何对分组数据同时使用 summarize 和 do 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49648237/
我是一名优秀的程序员,十分优秀!