gpt4 book ai didi

list - 循环遍历 R 中的数字列表

转载 作者:行者123 更新时间:2023-12-01 02:40:40 26 4
gpt4 key购买 nike

我正在尝试遍历数字列表并将它们连接到变量的末尾。

for(i in c(3,6,9)) {
x3=...
x6=...
x9=... }

有没有办法使用 R 宏数字,例如 x`i'?

最佳答案

这是可能的,但 不推荐 :

for(i in c(3,6,9))
assign(paste("a",i,sep=""),value=...)

关于list - 循环遍历 R 中的数字列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8495006/

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