gpt4 book ai didi

r - 没有默认值的错误 : argument ".cols" is missing,,出现 Shiny 错误

转载 作者:行者123 更新时间:2023-12-01 13:11:23 24 4
gpt4 key购买 nike

这是我试图在 group_by 函数中计算百分比的指定数据框,

df <- data.frame(Tag = c(1 ,1 ,1 ,1 ,1 ,2 ,2 ,2 ,2 ,2),
YPred = c("L1", "L2" ,"L3", "L4", "L5", "L1", "L2", "L3", "L4", "L5"),
Long = c(1004 , 544 , 545 , 282 , 1 ,2068 ,3006 ,3711 ,2342 , 33),
Medium = c(108, 252, 211, 149, 0, 17, 110, 248, 341, 4),
short = c(58, 118, 131, 73, 4, 0, 43, 150, 189,2),
Urgent = c(5, 70, 65, 24 , 5 ,22 ,18, 31 ,96, 2))

实现Percentage group_by的代码

library(dplyr)
group_by(df, Tag) %>%
mutate_at(.vars = vars(Long:Urgent),
.funs = funs(. / sum(., na.rm = TRUE)))

Shiny 的 react 函数 中执行时出现错误,但我在 R 控制台上正确执行。

错误信息
缺少参数“.cols”,没有默认值

最佳答案

@nabi.shaikh 错误不在代码中,我为 dplyr 使用的版本是我确定的旧版本。

> getOption("repos")
CRAN

"https://mran.microsoft.com/snapshot/2017-05-01 " 起重机额外 “http://www.stats.ox.ac.uk/pub/RWin

此外,我通过下面的最近 cran 的存储库更新了 dplyr 包。问题解决了。

install.packages("dplyr", repos = "https://cran.rstudio.com/")

关于r - 没有默认值的错误 : argument ".cols" is missing,,出现 Shiny 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48808577/

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