Created by Thomas Reinholdsson ([email protected]).
More about Vega: http://trifacta.github.com/vega/.
devtools::install_github("metagraf/rVega")
library(rVega)
treemap(1:26, letters)
geopath(...) # to be updated
library(rVega)
shinyServer(function(input, output) {
output$plot <- renderVega({
treemap(1:26, letters)
})
})
library(rVega)
shinyUI(bootstrapPage(
vegaOutput("plot")
))