gpt4 book ai didi

r - 运行for循环后如何保留标题名称

转载 作者:行者123 更新时间:2023-12-04 11:53:13 25 4
gpt4 key购买 nike

以下脚本生成 mtcars 数据集每一列的中值,但没有标题名称。在数据帧上运行 for 循环后如何保留 header 名称?

output_mtcars <- vector("double", ncol(mtcars))
for(i in seq_along(mtcars)) {
output_mtcars[[i]] <- mean(mtcars[[i]])
}

最佳答案

基础 R sapplypurrr::map_dbl 都将在此处保留名称:

sapply(mtcars, mean)
purrr::map_dbl(mtcars, mean)

关于r - 运行for循环后如何保留标题名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54776310/

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