我想在 IPython 笔记本中完成 R 代码的循环。做这个的最好方式是什么?
l = []
for i in range(10):
# execute R script
%%R -i i -o result #some arbitrary R code
# and use the output
l.append(result)
这可以在笔记本中完成(循环下一个单元格)吗?
我想在 IPython 笔记本中完成 R 代码的循环。做这个的最好方式是什么?
l = []
for i in range(10):
# execute R script
%%R -i i -o result #some arbitrary R code
# and use the output
l.append(result)
这可以在笔记本中完成(循环下一个单元格)吗?