gpt4 book ai didi

r - 将 count() 应用于数据框中的每个因子变量

转载 作者:行者123 更新时间:2023-12-01 14:01:46 25 4
gpt4 key购买 nike

我可以使用purrr::map()来获取数据帧中每一列的平均值。我可以将任何 map 函数与 count() 结合使用来获取数据框中每个分类变量的计数吗?

library(dplyr)
library(purrr)

mtcars %>% map(mean)

mtcars %>% mutate(am = factor(am, labels = c("auto", "manual")),
vs = factor(vs, labels = c("V", "S"))) %>% select_if(is.factor) %>%
map(count)

最佳答案

快到了!只需要指定count中的数据即可:

mtcars %>% 
mutate(
am = factor(am, labels = c("auto", "manual")),
vs = factor(vs, labels = c("V", "S"))
) %>%
select_if(is.factor) %>%
map(~count(data.frame(x = .x), x))

关于r - 将 count() 应用于数据框中的每个因子变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53857244/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com