You can't successfully pass an argument like "data = getdata()" where getdata() is a reactive producing a data frame. Not an insurmountable problem, since you can always write:
this_data <- getdata() # create data frame reactively
this_model <- getmodel() # another reactive
mod_plot(this_model, data = this_data)
You can't successfully pass an argument like "data = getdata()" where
getdata()
is a reactive producing a data frame. Not an insurmountable problem, since you can always write: