RExcel 中 Excel 的活动单元格
MS-Excel 中的单元格始终处于活动状态。当修改任何值时,公式会自动更新。在R-Excel中,我将数据放入R数组/数据帧中,并在公式中使用它,并获得输出。
当我更改任何数据时,我必须再次执行所有步骤才能获得修改后的结果。我想自动完成它,而不需要像excel那样编写任何宏。我可能会这样做来创建一个 Excel 宏,但我不想这样做。
或者如何将数据保存到活动单元格中的R-Excel中,以便R可以在每次运行/执行R命令时获取每个变量的当前值。
谁能告诉我解决方案吗?
Cells in MS-Excel are always actives. Formulas update automatically when any value is modified. In R-Excel, I put data into R array/Dataframe and use it in a formula, and get the output.
When I change any data, I have to do all steps again to get the modified result. I want to do it automatically without writing any macros as excel does. I may do it to create an excel macro, but I don't want to.
Or how to keep data into R-Excel in active cell, so R may take the current value of every variable for every run/execution of R-commands.
Can anyone tell me the solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RApply 应该做你想做的事。
RApply should do what you want.