我的手术时间长,只需做一次即可。 问题是,无论我尝试将结果保存到何处,一旦用户修改了页面上的任何参数,该操作就会再次执行。
我尝试过:
;
我也尝试过:
# server
function (input, output, session)
{
# this code gets executed every time a user changes an input on the page
result <- doLongOperation()
observe({
output$plot <- renderPlot({
getMyPlot(result)
)}
}