Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Matlab 中我们可以指定数据之间的间隔如下
for i = 1:3:n ... end
鉴于R中的for循环结构如下:
for (i in 1:n) { ... }
我们可以在 R 中指定数据区间吗?
在 R 中,您需要先创建一个序列:
for (i in seq(1,n,3)) { ...