Interactive stories on local .html via .rmd or Shiny

I am trying to create an .html file via RStudio in to have the following function (simplified).

plot1 : a simple time series graph of $ y_t $, where the user can manually pull / drag each point to change its value at any time.

plot2 : a time series depending on $ y_t $, such as $ f (y_t) = 2 * y_t + 1 $, after changing the value in plot1, plot2 will also change accordingly.

I want .html to be standalone, not cloudy. I think of a plot, a blue / knit, but I'm not sure if I am in the direction or how to connect the dots. Hope someone can point me in the right direction.

+6
source share
1 answer

Standalone / client html report works well for flexdashboard . It is based on R Markdown and therefore can hold brilliant elements.

I don’t know if you can change the values ​​with the mouse, but you can, of course, change the values ​​with sliders and other inputs , and also have a second graph that responds to the first graph .

You can see some more possibilities in the gallery .

+2
source

All Articles