Shiny - Stop-Trigger-Delay
Shiny is a package that makes it easy to create interactive web apps using R and Python.
observeEvent() is used to perform an action in response to an event
eventReactive() is used to create a calculated value that only updates in response to an event
observe() and reactive() functions automatically trigger on whatever they access
observeEvent() and eventReactive() functions need to be explicitly told what triggers them
And where does isolate fit in all this?
isolate() is used to stop a reaction
observeEvent() is used to perform an action in response to an event
eventReactive() is used to create a calculated value that only updates in response to an event