3
我想在IPython筆記本中完成R代碼循環。做這個的最好方式是什麼?在IPython筆記本中循環使用魔術功能
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)
這可以在筆記本電腦內完成嗎?(循環播放下一個單元格)?