I\'m creating a dashboard with R and D3 running with library(shiny).
This works wonderfully well and now i want turn the D3 code into modular objects which will save me
OK this works:
ui.r
library(shiny) shinyUI(bootstrapPage(includeHTML("static.html")))
server.r
library(shiny) shinyServer(function(input, output) {})
static.html
Input something in the input box: Name: Name: You wrote: {{name2}}
Input something in the input box:
Name:
Et voila, Up and Running ! :^)