gpt4 book ai didi

r - lapply 中的多行语法

转载 作者:行者123 更新时间:2023-12-04 09:14:15 26 4
gpt4 key购买 nike

如何在 lapply 中指定多行语法。我的语法也没有替换第一行中的 text_query。提前谢谢你。

text_query<-lapply(text_query, function(x) {   gsub("ABC", "ABD", x, fixed=TRUE)   gsub("JKL", "JKM", x, fixed=TRUE) } )

最佳答案

R 不关心一次操作中的换行,所以你可以这样写:

text_query <- lapply(text_query, function(x) {
gsub("ABC", "ABD", x, fixed=TRUE)
gsub("JKL", "JKM", x, fixed=TRUE)
})

或者,如果你想把它放在一行中,你可以用分号分隔语句,即

text_query<-lapply(text_query, function(x) {   gsub("ABC", "ABD", x, fixed=TRUE); gsub("JKL", "JKM", x, fixed=TRUE) } )

不过,我认为第一个选项更难以理解 ^^

关于r - lapply 中的多行语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33003894/

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