d3funnel

D3-funnel HTML widget for R

3
1
R

d3funnel

This is an experimental R package that provides support for D3-funnel as a HTML widget.

_xiiik@twitter

Installation

You can install from github

devtools::install_github('funnng/d3funnel')

Usage

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)))
    })
  }
)

options

Not yet implemented

License

MIT license.