gpt4 book ai didi

r - 从 R 中的 for 循环写入数据帧

转载 作者:行者123 更新时间:2023-12-02 05:23:51 25 4
gpt4 key购买 nike

我正在尝试从循环写入 R 中的数据帧,例如这样的循环>

for (i in 1:20) {
print(c(i+i,i*i,i/1))}

并将每行 3 个值写入具有三列的数据框中,以便每次迭代都会占用一个新行。我尝试使用矩阵,ncol=3 并按行填充,但只从循环中获取最后一项。

谢谢。

最佳答案

您可以使用 rbind:

d <- data.frame()
for (i in 1:20) {d <- rbind(d,c(i+i, i*i, i/1))}

关于r - 从 R 中的 for 循环写入数据帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2563824/

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