D3-funnel HTML widget for R
This is an experimental R package that provides support for D3-funnel as a HTML widget.
_xiiik@twitter
You can install from github
devtools::install_github('funnng/d3funnel')
It is pretty simple
library("shiny")
library("d3funnel")
shinyApp(
ui = fluidPage(d3funnelOutput('plot')),
server = function(input, output) {
output$plot <- renderD3funnel({
d3funnel(data.frame(a=c('vist','order','paid'), b=c(116634,2007,435)))
})
}
)
Not yet implemented
MIT license.