R - 保存完整数据集

发布于 2024-12-28 06:31:49 字数 385 浏览 2 评论 0原文

例如,当我在 R 中使用循环时,

for (k in 1:length(bcd)) {
  print(window(abc,start = (as.Date(start[i,]),end = (as.Date(finish[i,]))))
}

结果将是完整选定的数据。

但是,如果我想保存所选数据,它只记住与最后一个循环计数器对应的数据。

for (k in 1:length(bcd)) {
  A = ???(window(abc,start = (as.Date(start[i,]),end = (as.Date(finish[i,]))))
}

“???”中正确使用的函数是什么? ?谢谢。

When i am using loop in R, for example

for (k in 1:length(bcd)) {
  print(window(abc,start = (as.Date(start[i,]),end = (as.Date(finish[i,]))))
}

The outcome will be the the full selected data.

However, if i want to save the selected data, it only remember the data corresponding to last loop counter.

for (k in 1:length(bcd)) {
  A = ???(window(abc,start = (as.Date(start[i,]),end = (as.Date(finish[i,]))))
}

What is the right function to use in "???" ? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怎樣才叫好 2025-01-04 06:31:49

列表是最通用的类​​型。例如,您可以初始化“A”:

A <-list()
for (k in 1:length(bcd)) {
  A[[k]] <- window(abc, start = (as.Date(start[i,]), end = (as.Date(finish[i,]))))
}

专业人士使用 seq_along() 而不是 1:length(.)

如果列数相同但列数不同,则 行那么这可能有效:

do.call(rbind, A)   # since "A" is a list and the natural second argument to do.call

A list is the most general type. You could for instance initialize "A":

A <-list()
for (k in 1:length(bcd)) {
  A[[k]] <- window(abc, start = (as.Date(start[i,]), end = (as.Date(finish[i,]))))
}

The pros use seq_along() instead of 1:length(.)

If they are all the same number of columns but different numbers of rows then this might work:

do.call(rbind, A)   # since "A" is a list and the natural second argument to do.call
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文