gpt4 book ai didi

function - 试图将 col.name 附加到向量上

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

我有几个要在 R(studio) 中实现的功能。我将展示最简单的一个。我正在尝试将名称附加到向量上,以供以后用作 col.name。

# Initialize
headerA <- vector(mode="character",length=20)
headerA[1]="source";headerA[2]="matches"

# Function - add on new name
h <- function(df, compareA, compareB) {
new_header <- paste(compareA,"Vs",compareB,sep="_")
data.frame(df,new_header)
}
# Comparison 1:
compareA <-"AA"
compareB <-"BB"
headers <- (headerA, compareA, compareB)

但是我收到了这个错误,这非常令人费解。我已经用谷歌搜索了它,但搜索太模糊/广泛。
运行时我得到:

headers <- (headerA, compareA, compareB)
Error: unexpected ',' in "headers <- (headerA,"



另一个函数的第二个错误是相似的......

最佳答案

您似乎缺少对函数的调用 h并打开 (反而:

headers <- h(headerA, compareA, compareB)

结果是:
        df new_header
1 source AA_Vs_BB
2 matches AA_Vs_BB
3 AA_Vs_BB
4 AA_Vs_BB
...

关于function - 试图将 col.name 附加到向量上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7649793/

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