R - 保存完整数据集
例如,当我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
列表是最通用的类型。例如,您可以初始化“A”:
专业人士使用
seq_along()
而不是1:length(.)
如果列数相同但列数不同,则 行那么这可能有效:
A list is the most general type. You could for instance initialize "A":
The pros use
seq_along()
instead of1:length(.)
If they are all the same number of columns but different numbers of rows then this might work: