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.
我正在制作一个循环,在一个相对较大的矩阵R中为多个物种创建物种分布模型。R为了避免分析冗余,如果文件输出已经存在,我想在循环开始时有一个命令跳过分析。有人对如何添加这行代码有任何建议吗?
R
if(file.exists(filename)) { next }
在循环的开始?只要您真的希望不仅在 R 中使用循环,而且还希望在其中使用下一个 :)