开始使用免费开始使用

Understanding reactive expressions

One of the central tenets of reactivity is that reactive expressions are executed lazily, and their values are cached.

  1. Lazy: Evaluated only when it is called, typically by a reactive endpoint.
  2. Cached: Evaluated only when the value of one of its underlying dependencies changes.

Consider the Shiny app shown on the right. How many times do you think the following two messages will get printed:

  1. Computing cars_1 ...
  2. Computing cars_2 ...

本练习是课程的一部分

Building Web Applications with Shiny in R

查看课程

动手互动练习

通过我们的互动练习之一,将理论转化为实践

开始练习